home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / shells / bashsrc.zoo / readline / readline.c < prev    next >
C/C++ Source or Header  |  1991-06-05  |  132KB  |  5,622 lines

  1. /* readline.c -- a general facility for reading lines of input
  2.    with emacs style editing and completion. */
  3.  
  4. /* Copyright (C) 1987,1989 Free Software Foundation, Inc.
  5.  
  6.    This file contains the Readline Library (the Library), a set of
  7.    routines for providing Emacs style line input to programs that ask
  8.    for it.
  9.  
  10.    The Library is free software; you can redistribute it and/or modify
  11.    it under the terms of the GNU General Public License as published by
  12.    the Free Software Foundation; either version 1, or (at your option)
  13.    any later version.
  14.  
  15.    The Library is distributed in the hope that it will be useful, but
  16.    WITHOUT ANY WARRANTY; without even the implied warranty of
  17.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.    General Public License for more details.
  19.  
  20.    The GNU General Public License is often shipped with GNU software, and
  21.    is generally kept in a file called COPYING or LICENSE.  If you do not
  22.    have a copy of the license, write to the Free Software Foundation,
  23.    675 Mass Ave, Cambridge, MA 02139, USA. */
  24.  
  25. /* Remove these declarations when we have a complete libgnu.a. */
  26. #define STATIC_MALLOC
  27. #ifndef STATIC_MALLOC
  28. extern char *xmalloc (), *xrealloc ();
  29. #else
  30. static char *xmalloc (), *xrealloc ();
  31. #endif
  32.  
  33. #include <stdio.h>
  34. #include <sys/types.h>
  35. #include <fcntl.h>
  36. #include <sys/file.h>
  37. #include <signal.h>
  38.  
  39. #ifdef __GNUC__
  40. #define alloca __builtin_alloca
  41. #else
  42. #if defined (sparc) && defined (sun)
  43. #include <alloca.h>
  44. #endif
  45. #endif
  46.  
  47. #define NEW_TTY_DRIVER
  48. #if defined (SYSV) || defined (hpux)
  49. #undef NEW_TTY_DRIVER
  50. #include <termio.h>
  51. #else
  52. #include <sgtty.h>
  53. #endif
  54.  
  55. #include <errno.h>
  56. extern int errno;
  57.  
  58. #include <setjmp.h>
  59.  
  60. /* These next are for filename completion.  Perhaps this belongs
  61.    in a different place. */
  62. #include <sys/stat.h>
  63.  
  64. #include <pwd.h>
  65. #ifdef SYSV
  66. struct passwd *getpwuid (), *getpwent ();
  67. #endif
  68.  
  69. #define HACK_TERMCAP_MOTION
  70.  
  71. #ifndef SYSV
  72. #include <sys/dir.h>
  73. #else  /* SYSV */
  74. #if defined (xenix)
  75. #include <sys/ndir.h>
  76. #else
  77. #ifdef hpux
  78. #include <ndir.h>
  79. #else
  80. #include <dirent.h>
  81. #define direct dirent
  82. #define d_namlen d_reclen
  83. #endif  /* hpux */
  84. #endif  /* xenix */
  85. #endif  /* SYSV */
  86.  
  87. /* Some standard library routines. */
  88. #include "readline.h"
  89. #include "history.h"
  90.  
  91. #ifndef digit
  92. #define digit(c)  ((c) >= '0' && (c) <= '9')
  93. #endif
  94.  
  95. #ifndef isletter
  96. #define isletter(c) (((c) >= 'A' && (c) <= 'Z') || ((c) >= 'a' && (c) <= 'z'))
  97. #endif
  98.  
  99. #ifndef digit_value
  100. #define digit_value(c) ((c) - '0')
  101. #endif
  102.  
  103. #ifndef member
  104. char *index ();
  105. #define member(c, s) ((c) ? index ((s), (c)) : 0)
  106. #endif
  107.  
  108. #ifndef isident
  109. #define isident(c) ((isletter(c) || digit(c) || c == '_'))
  110. #endif
  111.  
  112. #ifndef exchange
  113. #define exchange(x, y) {int temp = x; x = y; y = temp;}
  114. #endif
  115.  
  116. static update_line ();
  117. static void output_character_function ();
  118. static delete_chars ();
  119. static delete_chars ();
  120. static insert_some_chars ();
  121.  
  122. #ifdef VOID_SIGHANDLER
  123. #define sighandler void
  124. #else
  125. #define sighandler int
  126. #endif
  127.  
  128. /* This typedef is equivalant to the one for Function; it allows us
  129.    to say SigHandler *foo = signal (SIGKILL, SIG_IGN); */
  130. typedef sighandler SigHandler ();
  131.  
  132. #ifdef SIGWINCH
  133. static sighandler rl_handle_sigwinch ();
  134. static SigHandler *old_sigwinch = (SigHandler *)NULL;
  135. #endif
  136.  
  137. /* If on, then readline handles signals in a way that doesn't screw. */
  138. #define HANDLE_SIGNALS
  139.  
  140. #if defined (SYSV)
  141. #ifdef HANDLE_SIGNALS
  142. #undef HANDLE_SIGNALS
  143. #endif
  144. #endif
  145.  
  146.  
  147. /* **************************************************************** */
  148. /*                                    */
  149. /*            Line editing input utility            */
  150. /*                                    */
  151. /* **************************************************************** */
  152.  
  153. /* A pointer to the keymap that is currently in use.
  154.    By default, it is the standard emacs keymap. */
  155. Keymap keymap = emacs_standard_keymap;
  156.  
  157. #define vi_mode 0
  158. #define emacs_mode 1
  159.  
  160. /* The current style of editing. */
  161. int rl_editing_mode = emacs_mode;
  162.  
  163. /* Non-zero if the previous command was a kill command. */
  164. static int last_command_was_kill = 0;
  165.  
  166. /* The current value of the numeric argument specified by the user. */
  167. int rl_numeric_arg = 1;
  168.  
  169. /* Non-zero if an argument was typed. */
  170. int rl_explicit_arg = 0;
  171.  
  172. /* Temporary value used while generating the argument. */
  173. static int arg_sign = 1;
  174.  
  175. /* Non-zero means we have been called at least once before. */
  176. static int rl_initialized = 0;
  177.  
  178. /* If non-zero, this program is running in an EMACS buffer. */
  179. static char *running_in_emacs = (char *)NULL;
  180.  
  181. /* The current offset in the current input line. */
  182. int rl_point;
  183.  
  184. /* Mark in the current input line. */
  185. int rl_mark;
  186.  
  187. /* Length of the current input line. */
  188. int rl_end;
  189.  
  190. /* Make this non-zero to return the current input_line. */
  191. int rl_done;
  192.  
  193. /* The last function executed by readline. */
  194. Function *rl_last_func = (Function *)NULL;
  195.  
  196. /* Top level environment for readline_internal (). */
  197. static jmp_buf readline_top_level;
  198.  
  199. /* The streams we interact with. */
  200. static FILE *in_stream, *out_stream;
  201.  
  202. /* The names of the streams that we do input and output to. */
  203. FILE *rl_instream = stdin, *rl_outstream = stdout;
  204.  
  205. /* Non-zero means echo characters as they are read. */
  206. int readline_echoing_p = 1;
  207.  
  208. /* Current prompt. */
  209. char *rl_prompt;
  210.  
  211. /* The number of characters read in order to type this complete command. */
  212. int rl_key_sequence_length = 0;
  213.  
  214. /* If non-zero, then this is the address of a function to call just
  215.    before readline_internal () prints the first prompt. */
  216. Function *rl_startup_hook = (Function *)NULL;
  217.  
  218. /* If non-zero, then this is the address of a function to call when
  219.    completing on a directory name.  The function is called with
  220.    the address of a string (the current directory name) as an arg. */
  221. Function *rl_symbolic_link_hook = (Function *)NULL;
  222.  
  223. /* What we use internally.  You should always refer to RL_LINE_BUFFER. */
  224. static char *the_line;
  225.  
  226. /* The character that can generate an EOF.  Really read from
  227.    the terminal driver... just defaulted here. */
  228. static int eof_char = CTRL ('D');
  229.  
  230. /* Non-zero makes this the next keystroke to read. */
  231. int rl_pending_input = 0;
  232.  
  233. /* Pointer to a useful terminal name. */
  234. char *rl_terminal_name = (char *)NULL;
  235.  
  236. /* Line buffer and maintenence. */
  237. char *rl_line_buffer = (char *)NULL;
  238. static int rl_line_buffer_len = 0;
  239. #define DEFAULT_BUFFER_SIZE 256
  240.  
  241.  
  242. /* **************************************************************** */
  243. /*                                    */
  244. /*            `Forward' declarations              */
  245. /*                                    */
  246. /* **************************************************************** */
  247.  
  248. /* Non-zero means do not parse any lines other than comments and
  249.    parser directives. */
  250. static unsigned char parsing_conditionalized_out = 0;
  251.  
  252. /* Caseless strcmp (). */
  253. static int stricmp (), strnicmp ();
  254.  
  255. /* Non-zero means to save keys that we dispatch on in a kbd macro. */
  256. static int defining_kbd_macro = 0;
  257.  
  258.  
  259. /* **************************************************************** */
  260. /*                                    */
  261. /*            Top Level Functions                */
  262. /*                                    */
  263. /* **************************************************************** */
  264.  
  265. /* Read a line of input.  Prompt with PROMPT.  A NULL PROMPT means
  266.    none.  A return value of NULL means that EOF was encountered. */
  267. char *
  268. readline (prompt)
  269.      char *prompt;
  270. {
  271.   static rl_prep_terminal (), rl_deprep_terminal ();
  272.   char *readline_internal ();
  273.   char *value;
  274.  
  275.   rl_prompt = prompt;
  276.  
  277.   /* If we are at EOF return a NULL string. */
  278.   if (rl_pending_input == EOF)
  279.     {
  280.       rl_pending_input = 0;
  281.       return ((char *)NULL);
  282.     }
  283.  
  284.   rl_initialize ();
  285.   rl_prep_terminal ();
  286.  
  287. #ifdef SIGWINCH
  288.   old_sigwinch = (SigHandler *)signal (SIGWINCH, rl_handle_sigwinch);
  289. #endif
  290.  
  291. #ifdef HANDLE_SIGNALS
  292.   rl_set_signals ();
  293. #endif
  294.  
  295.   value = readline_internal ();
  296.   rl_deprep_terminal ();
  297.  
  298. #ifdef SIGWINCH
  299.   signal (SIGWINCH, old_sigwinch);
  300. #endif
  301.  
  302. #ifdef HANDLE_SIGNALS
  303.   rl_clear_signals ();
  304. #endif
  305.  
  306.   return (value);
  307. }
  308.  
  309. /* Read a line of input from the global rl_instream, doing output on
  310.    the global rl_outstream.
  311.    If rl_prompt is non-null, then that is our prompt. */
  312. char *
  313. readline_internal ()
  314. {
  315.   int lastc, c, eof_found;
  316.  
  317.   in_stream = rl_instream; out_stream = rl_outstream;
  318.   lastc = eof_found = 0;
  319.  
  320.   if (rl_startup_hook)
  321.     (*rl_startup_hook) ();
  322.  
  323.   if (!readline_echoing_p)
  324.     {
  325.       if (rl_prompt)
  326.     {
  327.       fprintf (out_stream, "%s", rl_prompt);
  328.       fflush (out_stream);
  329.     }
  330.     }
  331.   else
  332.     {
  333.       rl_on_new_line ();
  334.       rl_redisplay ();
  335. #ifdef VI_MODE
  336.       if (rl_editing_mode == vi_mode)
  337.     rl_vi_insertion_mode ();
  338. #endif /* VI_MODE */
  339.     }
  340.  
  341.   while (!rl_done)
  342.     {
  343.       int lk = last_command_was_kill;
  344.       int code = setjmp (readline_top_level);
  345.  
  346.       if (code)
  347.     rl_redisplay ();
  348.  
  349.       if (!rl_pending_input)
  350.     {
  351.       /* Then initialize the argument and number of keys read. */
  352.       rl_init_argument ();
  353.       rl_key_sequence_length = 0;
  354.     }
  355.  
  356.       c = rl_read_key ();
  357.  
  358.       /* EOF typed to a non-blank line is a <NL>. */
  359.       if (c == EOF && rl_end)
  360.     c = NEWLINE;
  361.  
  362.       /* The character eof_char typed to blank line, and not as the
  363.      previous character is interpreted as EOF. */
  364.       if (((c == eof_char && lastc != c) || c == EOF) && !rl_end)
  365.     {
  366.       eof_found = 1;
  367.       break;
  368.     }
  369.  
  370.       lastc = c;
  371.       rl_dispatch (c, keymap);
  372.  
  373.       /* If there was no change in last_command_was_kill, then no kill
  374.      has taken place.  Note that if input is pending we are reading
  375.      a prefix command, so nothing has changed yet. */
  376.       if (!rl_pending_input)
  377.     {
  378.       if (lk == last_command_was_kill)
  379.         last_command_was_kill = 0;
  380.     }
  381.  
  382. #ifdef VI_MODE
  383.       /* In vi mode, when you exit insert mode, the cursor moves back
  384.      over the previous character.  We explicitly check for that here. */
  385.       if (rl_editing_mode == vi_mode && keymap == vi_movement_keymap)
  386.     rl_vi_check ();
  387. #endif
  388.  
  389.       if (!rl_done)
  390.     rl_redisplay ();
  391.     }
  392.  
  393.   /* Restore the original of this history line, iff the line that we
  394.      are editing was originally in the history, AND the line has changed. */
  395.   {
  396.     HIST_ENTRY *entry = current_history ();
  397.  
  398.     if (entry && rl_undo_list)
  399.       {
  400.     char *temp = savestring (the_line);
  401.     rl_revert_line ();
  402.     entry = replace_history_entry (where_history (), the_line,
  403.                        (HIST_ENTRY *)NULL);
  404.     free_history_entry (entry);
  405.  
  406.     strcpy (the_line, temp);
  407.     free (temp);
  408.       }
  409.   }
  410.  
  411.   /* At any rate, it is highly likely that this line has an undo list.  Get
  412.      rid of it now. */
  413.   if (rl_undo_list)
  414.     free_undo_list ();
  415.  
  416.   if (eof_found)
  417.     return (char *)NULL;
  418.   else
  419.     return (savestring (the_line));
  420. }
  421.  
  422.  
  423. /* **************************************************************** */
  424. /*                                        */
  425. /*               Signal Handling                          */
  426. /*                                    */
  427. /* **************************************************************** */
  428.  
  429. #ifdef SIGWINCH
  430. static sighandler
  431. rl_handle_sigwinch (sig, code, scp)
  432.      int sig, code;
  433.      struct sigcontext *scp;
  434. {
  435.   char *term = rl_terminal_name, *getenv ();
  436.  
  437.   if (readline_echoing_p)
  438.     {
  439.       if (!term)
  440.     term = getenv ("TERM");
  441.       if (!term)
  442.     term = "dumb";
  443.       rl_reset_terminal (term);
  444. #ifdef NEVER
  445.       crlf ();
  446.       rl_forced_update_display ();
  447. #endif
  448.     }
  449.  
  450.   if (old_sigwinch &&
  451.       old_sigwinch != (SigHandler *)SIG_IGN &&
  452.       old_sigwinch != (SigHandler *)SIG_DFL)
  453.     (*old_sigwinch)(sig, code, scp);
  454. }
  455. #endif  /* SIGWINCH */
  456.  
  457. #ifdef HANDLE_SIGNALS
  458. /* Interrupt handling. */
  459. static SigHandler *old_int  = (SigHandler *)NULL,
  460.           *old_tstp = (SigHandler *)NULL,
  461.           *old_ttou = (SigHandler *)NULL,
  462.           *old_ttin = (SigHandler *)NULL,
  463.           *old_cont = (SigHandler *)NULL;
  464.  
  465. /* Handle an interrupt character. */
  466. static sighandler
  467. rl_signal_handler (sig, code, scp)
  468.      int sig, code;
  469.      struct sigcontext *scp;
  470. {
  471.   static rl_prep_terminal (), rl_deprep_terminal ();
  472.  
  473.   switch (sig)
  474.     {
  475.     case SIGINT:
  476.       free_undo_list ();
  477.       rl_clear_message ();
  478.       rl_init_argument ();
  479. #ifdef SIGWINCH
  480.       signal (SIGWINCH, old_sigwinch);
  481. #endif
  482.  
  483. #ifdef SIGTSTP
  484.     case SIGTSTP:
  485.     case SIGTTOU:
  486.     case SIGTTIN:
  487. #endif
  488.  
  489.       rl_clean_up_for_exit ();
  490.       rl_deprep_terminal ();
  491.       rl_clear_signals ();
  492.       rl_pending_input = 0;
  493.  
  494.       kill (getpid (), sig);
  495.       sigsetmask (0);
  496.  
  497.       rl_prep_terminal ();
  498.       rl_set_signals ();
  499.     }
  500. }
  501.  
  502. rl_set_signals ()
  503. {
  504.   old_int = (SigHandler *)signal (SIGINT, rl_signal_handler);
  505.   if (old_int == (SigHandler *)SIG_IGN)
  506.     signal (SIGINT, SIG_IGN);
  507.  
  508. #ifdef SIGTSTP
  509.   old_tstp = (SigHandler *)signal (SIGTSTP, rl_signal_handler);
  510.   if (old_tstp == (SigHandler *)SIG_IGN)
  511.     signal (SIGTSTP, SIG_IGN);
  512. #endif
  513. #ifdef SIGTTOU
  514.   old_ttou = (SigHandler *)signal (SIGTTOU, rl_signal_handler);
  515.   old_ttin = (SigHandler *)signal (SIGTTIN, rl_signal_handler);
  516.  
  517.   if (old_tstp == (SigHandler *)SIG_IGN)
  518.     {
  519.       signal (SIGTTOU, SIG_IGN);
  520.       signal (SIGTTIN, SIG_IGN);
  521.     }
  522. #endif
  523. }
  524.  
  525. rl_clear_signals ()
  526. {
  527.   signal (SIGINT, old_int);
  528.  
  529. #ifdef SIGTSTP
  530.   signal (SIGTSTP, old_tstp);
  531. #endif
  532. #ifdef SIGTTOU
  533.   signal (SIGTTOU, old_ttou);
  534.   signal (SIGTTIN, old_ttin);
  535. #endif
  536. }
  537. #endif  /* HANDLE_SIGNALS */
  538.  
  539.  
  540. /* **************************************************************** */
  541. /*                                    */
  542. /*            Character Input Buffering               */
  543. /*                                    */
  544. /* **************************************************************** */
  545.  
  546. /* If the terminal was in xoff state when we got to it, then xon_char
  547.    contains the character that is supposed to start it again. */
  548. static int xon_char, xoff_state;
  549. static int pop_index = 0, push_index = 0, ibuffer_len = 511;
  550. static unsigned char ibuffer[512];
  551.  
  552. /* Non-null means it is a pointer to a function to run while waiting for
  553.    character input. */
  554. Function *rl_event_hook = (Function *)NULL;
  555.  
  556. #define any_typein (push_index != pop_index)
  557.  
  558. /* Add KEY to the buffer of characters to be read. */
  559. rl_stuff_char (key)
  560.      int key;
  561. {
  562.   if (key == EOF)
  563.     {
  564.       key = NEWLINE;
  565.       rl_pending_input = EOF;
  566.     }
  567.   ibuffer[push_index++] = key;
  568.   if (push_index >= ibuffer_len)
  569.     push_index = 0;
  570. }
  571.  
  572. /* Return the amount of space available in the
  573.    buffer for stuffing characters. */
  574. int
  575. ibuffer_space ()
  576. {
  577.   if (pop_index > push_index)
  578.     return (pop_index - push_index);
  579.   else
  580.     return (ibuffer_len - (push_index - pop_index));
  581. }
  582.  
  583. /* Get a key from the buffer of characters to be read.
  584.    Return the key in KEY.
  585.    Result is KEY if there was a key, or 0 if there wasn't. */
  586. int
  587. rl_get_char (key)
  588.      int *key;
  589. {
  590.   if (push_index == pop_index)
  591.     return (0);
  592.  
  593.   *key = ibuffer[pop_index++];
  594.  
  595.   if (pop_index >= ibuffer_len)
  596.     pop_index = 0;
  597.  
  598.   return (1);
  599. }
  600.  
  601. /* Stuff KEY into the *front* of the input buffer.
  602.    Returns non-zero if successful, zero if there is
  603.    no space left in the buffer. */
  604. int
  605. rl_unget_char (key)
  606.      int key;
  607. {
  608.   if (ibuffer_space ())
  609.     {
  610.       pop_index--;
  611.       if (pop_index < 0)
  612.     pop_index = ibuffer_len - 1;
  613.       ibuffer[pop_index] = key;
  614.       return (1);
  615.     }
  616.   return (0);
  617. }
  618.  
  619. /* If a character is available to be read, then read it
  620.    and stuff it into IBUFFER.  Otherwise, just return. */
  621. rl_gather_tyi ()
  622. {
  623.   int tty = fileno (in_stream);
  624.   register int tem, result = -1;
  625.   long chars_avail;
  626.   char input;
  627.  
  628. #ifdef FIONREAD
  629.   result = ioctl (tty, FIONREAD, &chars_avail);
  630. #endif
  631.  
  632.   if (result == -1)
  633.     {
  634.       fcntl (tty, F_SETFL, O_NDELAY);
  635.       chars_avail = read (tty, &input, 1);
  636.       fcntl (tty, F_SETFL, 0);
  637.       if (chars_avail == -1 && errno == EAGAIN)
  638.     return;
  639.     }
  640.  
  641.   tem = ibuffer_space ();
  642.  
  643.   if (chars_avail > tem)
  644.     chars_avail = tem;
  645.  
  646.   /* One cannot read all of the available input.  I can only read a single
  647.      character at a time, or else programs which require input can be
  648.      thwarted.  If the buffer is larger than one character, I lose.
  649.      Damn! */
  650.   if (tem < ibuffer_len)
  651.     chars_avail = 0;
  652.  
  653.   if (result != -1)
  654.     {
  655.       while (chars_avail--)
  656.     rl_stuff_char (rl_getc (in_stream));
  657.     }
  658.   else
  659.     {
  660.       if (chars_avail)
  661.     rl_stuff_char (input);
  662.     }
  663. }
  664.  
  665. /* Read a key, including pending input. */
  666. int
  667. rl_read_key ()
  668. {
  669.   int c;
  670.  
  671.   rl_key_sequence_length++;
  672.  
  673.   if (rl_pending_input)
  674.     {
  675.       c = rl_pending_input;
  676.       rl_pending_input = 0;
  677.     }
  678.   else
  679.     {
  680.       static int next_macro_key ();
  681.  
  682.       /* If input is coming from a macro, then use that. */
  683.       if (c = next_macro_key ())
  684.     return (c);
  685.  
  686.       /* If the user has an event function, then call it periodically. */
  687.       if (rl_event_hook)
  688.     {
  689.       while (rl_event_hook && !rl_get_char (&c))
  690.         {
  691.           (*rl_event_hook) ();
  692.           rl_gather_tyi ();
  693.         }
  694.     }
  695.       else
  696.     {
  697.       if (!rl_get_char (&c))
  698.         c = rl_getc (in_stream);
  699.     }
  700.     }
  701.  
  702. #ifdef NEVER  /* This breaks supdup to 4.0.3c machines. */
  703. #ifdef TIOCSTART
  704.   /* Ugh.  But I can't think of a better way. */
  705.   if (xoff_state && c == xon_char)
  706.     {
  707.       ioctl (fileno (in_stream), TIOCSTART, 0);
  708.       xoff_state = 0;
  709.       return (rl_read_key ());
  710.     }
  711. #endif /* TIOCSTART */
  712. #endif
  713.  
  714.   return (c);
  715. }
  716.  
  717. /* I'm beginning to hate the declaration rules for various compilers. */
  718. static void add_macro_char ();
  719.  
  720. /* Do the command associated with KEY in MAP.
  721.    If the associated command is really a keymap, then read
  722.    another key, and dispatch into that map. */
  723. rl_dispatch (key, map)
  724.      register int key;
  725.      Keymap map;
  726. {
  727.  
  728.   if (defining_kbd_macro)
  729.     add_macro_char (key);
  730.  
  731.   if (key > 127 && key < 256)
  732.     {
  733.       if (map[ESC].type == ISKMAP)
  734.     {
  735.       map = (Keymap)map[ESC].function;
  736.       key -= 128;
  737.       rl_dispatch (key, map);
  738.     }
  739.       else
  740.     ding ();
  741.       return;
  742.     }
  743.  
  744.   switch (map[key].type)
  745.     {
  746.     case ISFUNC:
  747.       {
  748.     Function *func = map[key].function;
  749.  
  750.     if (func != (Function *)NULL)
  751.       {
  752.         /* Special case rl_do_lowercase_version (). */
  753.         if (func == rl_do_lowercase_version)
  754.           {
  755.         rl_dispatch (to_lower (key), map);
  756.         return;
  757.           }
  758.  
  759.         (*map[key].function)(rl_numeric_arg * arg_sign, key);
  760.       }
  761.     else
  762.       {
  763.         ding ();
  764.         return;
  765.       }
  766.       }
  767.       break;
  768.  
  769.     case ISKMAP:
  770.       if (map[key].function != (Function *)NULL)
  771.     {
  772.       int newkey;
  773.  
  774.       rl_key_sequence_length++;
  775.       newkey = rl_read_key ();
  776.       rl_dispatch (newkey, (Keymap)map[key].function);
  777.     }
  778.       else
  779.     {
  780.       ding ();
  781.       return;
  782.     }
  783.       break;
  784.  
  785.     case ISMACR:
  786.       if (map[key].function != (Function *)NULL)
  787.     {
  788.       static with_macro_input ();
  789.       char *macro = savestring ((char *)map[key].function);
  790.  
  791.       with_macro_input (macro);
  792.       return;
  793.     }
  794.       break;
  795.     }
  796.  
  797.   /* If we have input pending, then the last command was a prefix
  798.      command.  Don't change the state of rl_last_func. */
  799.   if (!rl_pending_input)
  800.     rl_last_func = map[key].function;
  801. }
  802.  
  803.  
  804. /* **************************************************************** */
  805. /*                                    */
  806. /*            Hacking Keyboard Macros             */
  807. /*                                    */
  808. /* **************************************************************** */
  809.  
  810. /* The currently executing macro string.  If this is non-zero,
  811.    then it is a malloc ()'ed string where input is coming from. */
  812. static char *executing_macro = (char *)NULL;
  813.  
  814. /* The offset in the above string to the next character to be read. */
  815. static int executing_macro_index = 0;
  816.  
  817. /* The current macro string being built.  Characters get stuffed
  818.    in here by add_macro_char (). */
  819. static char *current_macro = (char *)NULL;
  820.  
  821. /* The size of the buffer allocated to current_macro. */
  822. static int current_macro_size = 0;
  823.  
  824. /* The index at which characters are being added to current_macro. */
  825. static int current_macro_index = 0;
  826.  
  827. /* A structure used to save nested macro strings.
  828.    It is a linked list of string/index for each saved macro. */
  829. struct saved_macro {
  830.   struct saved_macro *next;
  831.   char *string;
  832.   int index;
  833. };
  834.  
  835. /* The list of saved macros. */
  836. struct saved_macro *macro_list = (struct saved_macro *)NULL;
  837.  
  838. /* Forward declarations of static functions.  Thank you C. */
  839. static void push_executing_macro (), pop_executing_macro ();
  840.  
  841. /* This one has to be declared earlier in the file. */
  842. /* static void add_macro_char (); */
  843.  
  844. /* Set up to read subsequent input from STRING.
  845.    STRING is free ()'ed when we are done with it. */
  846. static
  847. with_macro_input (string)
  848.      char *string;
  849. {
  850.   push_executing_macro ();
  851.   executing_macro = string;
  852.   executing_macro_index = 0;
  853. }
  854.  
  855. /* Return the next character available from a macro, or 0 if
  856.    there are no macro characters. */
  857. static int
  858. next_macro_key ()
  859. {
  860.   if (!executing_macro)
  861.     return (0);
  862.  
  863.   if (!executing_macro[executing_macro_index])
  864.     {
  865.       pop_executing_macro ();
  866.       return (next_macro_key ());
  867.     }
  868.  
  869.   return (executing_macro[executing_macro_index++]);
  870. }
  871.  
  872. /* Save the currently executing macro on a stack of saved macros. */
  873. static void
  874. push_executing_macro ()
  875. {
  876.   struct saved_macro *saver;
  877.  
  878.   saver = (struct saved_macro *)xmalloc (sizeof (struct saved_macro));
  879.   saver->next = macro_list;
  880.   saver->index = executing_macro_index;
  881.   saver->string = executing_macro;
  882.  
  883.   macro_list = saver;
  884. }
  885.  
  886. /* Discard the current macro, replacing it with the one
  887.    on the top of the stack of saved macros. */
  888. static void
  889. pop_executing_macro ()
  890. {
  891.   if (executing_macro)
  892.     free (executing_macro);
  893.  
  894.   executing_macro = (char *)NULL;
  895.   executing_macro_index = 0;
  896.  
  897.   if (macro_list)
  898.     {
  899.       struct saved_macro *disposer = macro_list;
  900.       executing_macro = macro_list->string;
  901.       executing_macro_index = macro_list->index;
  902.       macro_list = macro_list->next;
  903.       free (disposer);
  904.     }
  905. }
  906.  
  907. /* Add a character to the macro being built. */
  908. static void
  909. add_macro_char (c)
  910.      int c;
  911. {
  912.   if (current_macro_index + 1 >= current_macro_size)
  913.     {
  914.       if (!current_macro)
  915.     current_macro = (char *)xmalloc (current_macro_size = 25);
  916.       else
  917.     current_macro =
  918.       (char *)xrealloc (current_macro, current_macro_size += 25);
  919.     }
  920.  
  921.   current_macro[current_macro_index++] = c;
  922.   current_macro[current_macro_index] = '\0';
  923. }
  924.  
  925. /* Begin defining a keyboard macro.
  926.    Keystrokes are recorded as they are executed.
  927.    End the definition with rl_end_kbd_macro ().
  928.    If a numeric argument was explicitly typed, then append this
  929.    definition to the end of the existing macro, and start by
  930.    re-executing the existing macro. */
  931. rl_start_kbd_macro (ignore1, ignore2)
  932.      int ignore1, ignore2;
  933. {
  934.   if (defining_kbd_macro)
  935.     rl_abort ();
  936.  
  937.   if (rl_explicit_arg)
  938.     {
  939.       if (current_macro)
  940.     with_macro_input (savestring (current_macro));
  941.     }
  942.   else
  943.     current_macro_index = 0;
  944.  
  945.   defining_kbd_macro = 1;
  946. }
  947.  
  948. /* Stop defining a keyboard macro.
  949.    A numeric argument says to execute the macro right now,
  950.    that many times, counting the definition as the first time. */
  951. rl_end_kbd_macro (count, ignore)
  952.      int count, ignore;
  953. {
  954.   if (!defining_kbd_macro)
  955.     rl_abort ();
  956.  
  957.   current_macro_index -= (rl_key_sequence_length - 1);
  958.   current_macro[current_macro_index] = '\0';
  959.  
  960.   defining_kbd_macro = 0;
  961.  
  962.   rl_call_last_kbd_macro (--count, 0);
  963. }
  964.  
  965. /* Execute the most recently defined keyboard macro.
  966.    COUNT says how many times to execute it. */
  967. rl_call_last_kbd_macro (count, ignore)
  968.      int count, ignore;
  969. {
  970.   if (!current_macro)
  971.     rl_abort ();
  972.  
  973.   while (count--)
  974.     with_macro_input (savestring (current_macro));
  975. }
  976.  
  977.  
  978. /* **************************************************************** */
  979. /*                                    */
  980. /*            Initializations                 */
  981. /*                                    */
  982. /* **************************************************************** */
  983.  
  984. /* Initliaze readline (and terminal if not already). */
  985. rl_initialize ()
  986. {
  987.   extern char *rl_display_prompt;
  988.  
  989.   /* If we have never been called before, initialize the
  990.      terminal and data structures. */
  991.   if (!rl_initialized)
  992.     {
  993.       readline_initialize_everything ();
  994.       rl_initialized++;
  995.     }
  996.  
  997.   /* Initalize the current line information. */
  998.   rl_point = rl_end = 0;
  999.   the_line = rl_line_buffer;
  1000.   the_line[0] = 0;
  1001.  
  1002.   /* We aren't done yet.  We haven't even gotten started yet! */
  1003.   rl_done = 0;
  1004.  
  1005.   /* Tell the history routines what is going on. */
  1006.   start_using_history ();
  1007.  
  1008.   /* Make the display buffer match the state of the line. */
  1009.   {
  1010.     extern char *rl_display_prompt;
  1011.     extern int forced_display;
  1012.  
  1013.     rl_on_new_line ();
  1014.  
  1015.     rl_display_prompt = rl_prompt ? rl_prompt : "";
  1016.     forced_display = 1;
  1017.   }
  1018.  
  1019.   /* No such function typed yet. */
  1020.   rl_last_func = (Function *)NULL;
  1021.  
  1022.   /* Parsing of key-bindings begins in an enabled state. */
  1023.   parsing_conditionalized_out = 0;
  1024. }
  1025.  
  1026. /* Initialize the entire state of the world. */
  1027. readline_initialize_everything ()
  1028. {
  1029.   /* Find out if we are running in Emacs. */
  1030.   running_in_emacs = (char *)getenv ("EMACS");
  1031.  
  1032.   /* Allocate data structures. */
  1033.   if (!rl_line_buffer)
  1034.     rl_line_buffer =
  1035.       (char *)xmalloc (rl_line_buffer_len = DEFAULT_BUFFER_SIZE);
  1036.  
  1037.   /* Initialize the terminal interface. */
  1038.   init_terminal_io ((char *)NULL);
  1039.  
  1040.   /* Bind tty characters to readline functions. */
  1041.   readline_default_bindings ();
  1042.  
  1043.   /* Initialize the function names. */
  1044.   rl_initialize_funmap ();
  1045.  
  1046.   /* Read in the init file. */
  1047.   rl_read_init_file ((char *)NULL);
  1048.  
  1049.   /* If the completion parser's default word break characters haven't
  1050.      been set yet, then do so now. */
  1051.   {
  1052.     extern char *rl_completer_word_break_characters;
  1053.     extern char *rl_basic_word_break_characters;
  1054.  
  1055.     if (rl_completer_word_break_characters == (char *)NULL)
  1056.       rl_completer_word_break_characters = rl_basic_word_break_characters;
  1057.   }
  1058. }
  1059.  
  1060. /* If this system allows us to look at the values of the regular
  1061.    input editing characters, then bind them to their readline
  1062.    equivalents. */
  1063. readline_default_bindings ()
  1064. {
  1065.  
  1066. #ifdef NEW_TTY_DRIVER
  1067.   struct sgttyb ttybuff;
  1068.   int tty = fileno (rl_instream);
  1069.  
  1070.   if (ioctl (tty, TIOCGETP, &ttybuff) != -1)
  1071.     {
  1072.       int erase = ttybuff.sg_erase, kill = ttybuff.sg_kill;
  1073.  
  1074.       if (erase != -1 && keymap[erase].type == ISFUNC)
  1075.     keymap[erase].function = rl_rubout;
  1076.  
  1077.       if (kill != -1 && keymap[kill].type == ISFUNC)
  1078.     keymap[kill].function = rl_unix_line_discard;
  1079.     }
  1080.  
  1081. #ifdef TIOCGLTC
  1082.   {
  1083.     struct ltchars lt;
  1084.  
  1085.     if (ioctl (tty, TIOCGLTC, <) != -1)
  1086.       {
  1087.     int erase = lt.t_werasc, nextc = lt.t_lnextc;
  1088.  
  1089.     if (erase != -1 && keymap[erase].type == ISFUNC)
  1090.       keymap[erase].function = rl_unix_word_rubout;
  1091.  
  1092.     if (nextc != -1 && keymap[nextc].type == ISFUNC)
  1093.       keymap[nextc].function = rl_quoted_insert;
  1094.       }
  1095.   }
  1096. #endif /* TIOCGLTC */
  1097. #else /* not NEW_TTY_DRIVER */
  1098.   struct termio ttybuff;
  1099.   int tty = fileno (rl_instream);
  1100.  
  1101.   if (ioctl (tty, TCGETA, &ttybuff) != -1)
  1102.     {
  1103.       int erase = ttybuff.c_cc[VERASE];
  1104.       int kill = ttybuff.c_cc[VKILL]l
  1105.  
  1106.       if (erase != -1 && keymap[(unsigned char)erase].type == ISFUNC)
  1107.     keymap[(unsigned char)erase].function = rl_rubout;
  1108.  
  1109.       if (kill != -1 && keymap[(unsigned char)kill].type == ISFUNC)
  1110.     keymap[(unsigned char)kill].function = rl_unix_line_discard;
  1111.     }
  1112. #endif /* NEW_TTY_DRIVER */
  1113. }
  1114.  
  1115.  
  1116. /* **************************************************************** */
  1117. /*                                    */
  1118. /*            Numeric Arguments                */
  1119. /*                                    */
  1120. /* **************************************************************** */
  1121.  
  1122. /* Handle C-u style numeric args, as well as M--, and M-digits. */
  1123.  
  1124. /* Add the current digit to the argument in progress. */
  1125. rl_digit_argument (ignore, key)
  1126.      int ignore, key;
  1127. {
  1128.   rl_pending_input = key;
  1129.   rl_digit_loop ();
  1130. }
  1131.  
  1132. /* What to do when you abort reading an argument. */
  1133. rl_discard_argument ()
  1134. {
  1135.   ding ();
  1136.   rl_clear_message ();
  1137.   rl_init_argument ();
  1138. }
  1139.  
  1140. /* Create a default argument. */
  1141. rl_init_argument ()
  1142. {
  1143.   rl_numeric_arg = arg_sign = 1;
  1144.   rl_explicit_arg = 0;
  1145. }
  1146.  
  1147. /* C-u, universal argument.  Multiply the current argument by 4.
  1148.    Read a key.  If the key has nothing to do with arguments, then
  1149.    dispatch on it.  If the key is the abort character then abort. */
  1150. rl_universal_argument ()
  1151. {
  1152.   rl_numeric_arg *= 4;
  1153.   rl_digit_loop ();
  1154. }
  1155.  
  1156. rl_digit_loop ()
  1157. {
  1158.   int key, c;
  1159.   while (1)
  1160.     {
  1161.       rl_message ("(arg: %d) ", arg_sign * rl_numeric_arg);
  1162.       key = c = rl_read_key ();
  1163.  
  1164.       if (keymap[c].type == ISFUNC &&
  1165.       keymap[c].function == rl_universal_argument)
  1166.     {
  1167.       rl_numeric_arg *= 4;
  1168.       continue;
  1169.     }
  1170.       c = UNMETA (c);
  1171.       if (numeric (c))
  1172.     {
  1173.       if (rl_explicit_arg)
  1174.         rl_numeric_arg = (rl_numeric_arg * 10) + (c - '0');
  1175.       else
  1176.         rl_numeric_arg = (c - '0');
  1177.       rl_explicit_arg = 1;
  1178.     }
  1179.       else
  1180.     {
  1181.       if (c == '-' && !rl_explicit_arg)
  1182.         {
  1183.           rl_numeric_arg = 1;
  1184.           arg_sign = -1;
  1185.         }
  1186.       else
  1187.         {
  1188.           rl_clear_message ();
  1189.           rl_dispatch (key, keymap);
  1190.           return;
  1191.         }
  1192.     }
  1193.     }
  1194. }
  1195.  
  1196.  
  1197. /* **************************************************************** */
  1198. /*                                    */
  1199. /*            Display stuff                    */
  1200. /*                                    */
  1201. /* **************************************************************** */
  1202.  
  1203. /* This is the stuff that is hard for me.  I never seem to write good
  1204.    display routines in C.  Let's see how I do this time. */
  1205.  
  1206. /* (PWP) Well... Good for a simple line updater, but totally ignores
  1207.    the problems of input lines longer than the screen width.
  1208.  
  1209.    update_line and the code that calls it makes a multiple line,
  1210.    automatically wrapping line update.  Carefull attention needs
  1211.    to be paid to the vertical position variables.
  1212.  
  1213.    handling of terminals with autowrap on (incl. DEC braindamage)
  1214.    could be improved a bit.  Right now I just cheat and decrement
  1215.    screenwidth by one. */
  1216.  
  1217. /* Keep two buffers; one which reflects the current contents of the
  1218.    screen, and the other to draw what we think the new contents should
  1219.    be.  Then compare the buffers, and make whatever changes to the
  1220.    screen itself that we should.  Finally, make the buffer that we
  1221.    just drew into be the one which reflects the current contents of the
  1222.    screen, and place the cursor where it belongs.
  1223.  
  1224.    Commands that want to can fix the display themselves, and then let
  1225.    this function know that the display has been fixed by setting the
  1226.    RL_DISPLAY_FIXED variable.  This is good for efficiency. */
  1227.  
  1228. /* Termcap variables: */
  1229. extern char *term_up, *term_dc, *term_cr;
  1230. extern int screenheight, screenwidth, terminal_can_insert;
  1231.  
  1232. /* What YOU turn on when you have handled all redisplay yourself. */
  1233. int rl_display_fixed = 0;
  1234.  
  1235. /* The visible cursor position.  If you print some text, adjust this. */
  1236. int last_c_pos = 0;
  1237. int last_v_pos = 0;
  1238.  
  1239. /* The last left edge of text that was displayed.  This is used when
  1240.    doing horizontal scrolling.  It shifts in thirds of a screenwidth. */
  1241. static int last_lmargin = 0;
  1242.  
  1243. /* The line display buffers.  One is the line currently displayed on
  1244.    the screen.  The other is the line about to be displayed. */
  1245. static char *visible_line = (char *)NULL;
  1246. static char *invisible_line = (char *)NULL;
  1247.  
  1248. /* Number of lines currently on screen minus 1. */
  1249. int vis_botlin = 0;
  1250.  
  1251. /* A buffer for `modeline' messages. */
  1252. char msg_buf[128];
  1253.  
  1254. /* Non-zero forces the redisplay even if we thought it was unnecessary. */
  1255. int forced_display = 0;
  1256.  
  1257. /* The stuff that gets printed out before the actual text of the line.
  1258.    This is usually pointing to rl_prompt. */
  1259. char *rl_display_prompt = (char *)NULL;
  1260.  
  1261. /* Default and initial buffer size.  Can grow. */
  1262. static int line_size = 1024;
  1263.  
  1264. /* Non-zero means to always use horizontal scrolling in line display. */
  1265. int horizontal_scroll_mode = 0;
  1266.  
  1267. /* I really disagree with this, but my boss (among others) insists that we
  1268.    support compilers that don't work.  I don't think we are gaining by doing
  1269.    so; what is the advantage in producing better code if we can't use it? */
  1270. /* The following two declarations belong inside the
  1271.    function block, not here. */
  1272. static void move_cursor_relative ();
  1273. static void output_some_chars ();
  1274. static void output_character_function ();
  1275. static int compare_strings ();
  1276.  
  1277. /* Basic redisplay algorithm. */
  1278. rl_redisplay ()
  1279. {
  1280.   register int in, out, c, linenum;
  1281.   register char *line = invisible_line;
  1282.   int c_pos = 0;
  1283.   int inv_botlin = 0;        /* Number of lines in newly drawn buffer. */
  1284.  
  1285.   extern int readline_echoing_p;
  1286.  
  1287.   if (!readline_echoing_p)
  1288.     return;
  1289.  
  1290.   if (!rl_display_prompt)
  1291.     rl_display_prompt = "";
  1292.  
  1293.   if (!invisible_line)
  1294.     {
  1295.       visible_line = (char *)xmalloc (line_size);
  1296.       invisible_line = (char *)xmalloc (line_size);
  1297.       line = invisible_line;
  1298.       for (in = 0; in < line_size; in++)
  1299.     {
  1300.       visible_line[in] = 0;
  1301.       invisible_line[in] = 1;
  1302.     }
  1303.       rl_on_new_line ();
  1304.     }
  1305.  
  1306.   /* Draw the line into the buffer. */
  1307.   c_pos = -1;
  1308.  
  1309.   /* Mark the line as modified or not.  We only do this for history
  1310.      lines. */
  1311.   out = 0;
  1312.   if (current_history () && rl_undo_list)
  1313.     {
  1314.       line[out++] = '*';
  1315.       line[out] = '\0';
  1316.     }
  1317.  
  1318.   /* If someone thought that the redisplay was handled, but the currently
  1319.      visible line has a different modification state than the one about
  1320.      to become visible, then correct the callers misconception. */
  1321.   if (visible_line[0] != invisible_line[0])
  1322.     rl_display_fixed = 0;
  1323.  
  1324.   strncpy (line + out,  rl_display_prompt, strlen (rl_display_prompt));
  1325.   out += strlen (rl_display_prompt);
  1326.   line[out] = '\0';
  1327.  
  1328.   for (in = 0; in < rl_end; in++)
  1329.     {
  1330.       c = the_line[in];
  1331.  
  1332.       if (out + 1 >= line_size)
  1333.     {
  1334.       line_size *= 2;
  1335.       visible_line = (char *)xrealloc (visible_line, line_size);
  1336.       invisible_line = (char *)xrealloc (invisible_line, line_size);
  1337.       line = invisible_line;
  1338.     }
  1339.  
  1340.       if (in == rl_point)
  1341.     c_pos = out;
  1342.  
  1343.       if (c > 127)
  1344.     {
  1345.       line[out++] = 'M';
  1346.       line[out++] = '-';
  1347.       line[out++] = c - 128;
  1348.     }
  1349. #define DISPLAY_TABS
  1350. #ifdef DISPLAY_TABS
  1351.       else if (c == '\t')
  1352.     {
  1353.       register int newout = (out | (int)7) + 1;
  1354.       while (out < newout)
  1355.         line[out++] = ' ';
  1356.     }
  1357. #endif
  1358.       else if (c < 32)
  1359.     {
  1360.       line[out++] = 'C';
  1361.       line[out++] = '-';
  1362.       line[out++] = c + 64;
  1363.     }
  1364.       else
  1365.     line[out++] = c;
  1366.     }
  1367.   line[out] = '\0';
  1368.   if (c_pos < 0)
  1369.     c_pos = out;
  1370.  
  1371.   /* PWP: now is when things get a bit hairy.  The visible and invisible
  1372.      line buffers are really multiple lines, which would wrap every
  1373.      (screenwidth - 1) characters.  Go through each in turn, finding
  1374.      the changed region and updating it.  The line order is top to bottom. */
  1375.  
  1376.   /* If we can move the cursor up and down, then use multiple lines,
  1377.      otherwise, let long lines display in a single terminal line, and
  1378.      horizontally scroll it. */
  1379.  
  1380.   if (!horizontal_scroll_mode && term_up && *term_up)
  1381.     {
  1382.       int total_screen_chars = (screenwidth * screenheight);
  1383.  
  1384.       if (!rl_display_fixed || forced_display)
  1385.     {
  1386.       forced_display = 0;
  1387.  
  1388.       /* If we have more than a screenful of material to display, then
  1389.          only display a screenful.  We should display the last screen,
  1390.          not the first.  I'll fix this in a minute. */
  1391.       if (out >= total_screen_chars)
  1392.         out = total_screen_chars - 1;
  1393.  
  1394.       /* Number of screen lines to display. */
  1395.       inv_botlin = out / screenwidth;
  1396.  
  1397.       /* For each line in the buffer, do the updating display. */
  1398.       for (linenum = 0; linenum <= inv_botlin; linenum++)
  1399.         update_line (linenum > vis_botlin ? ""
  1400.              : &visible_line[linenum * screenwidth],
  1401.              &invisible_line[linenum * screenwidth],
  1402.              linenum);
  1403.  
  1404.       /* We may have deleted some lines.  If so, clear the left over
  1405.          blank ones at the bottom out. */
  1406.       if (vis_botlin > inv_botlin)
  1407.         {
  1408.           char *tt;
  1409.           for (; linenum <= vis_botlin; linenum++)
  1410.         {
  1411.           tt = &visible_line[linenum * screenwidth];
  1412.           move_vert (linenum);
  1413.           move_cursor_relative (0, tt);
  1414.           clear_to_eol ((linenum == vis_botlin)?
  1415.                 strlen (tt) : screenwidth);
  1416.         }
  1417.         }
  1418.       vis_botlin = inv_botlin;
  1419.  
  1420.       /* Move the cursor where it should be. */
  1421.       move_vert (c_pos / screenwidth);
  1422.       move_cursor_relative (c_pos % screenwidth,
  1423.                 &invisible_line[(c_pos / screenwidth) * screenwidth]);
  1424.     }
  1425.     }
  1426.   else                /* Do horizontal scrolling. */
  1427.     {
  1428.       int lmargin;
  1429.  
  1430.       /* Always at top line. */
  1431.       last_v_pos = 0;
  1432.  
  1433.       /* If the display position of the cursor would be off the edge
  1434.      of the screen, start the display of this line at an offset that
  1435.      leaves the cursor on the screen. */
  1436.       if (c_pos - last_lmargin > screenwidth - 2)
  1437.     lmargin = (c_pos / (screenwidth / 3) - 2) * (screenwidth / 3);
  1438.       else if (c_pos - last_lmargin < 1)
  1439.     lmargin = ((c_pos - 1) / (screenwidth / 3)) * (screenwidth / 3);
  1440.       else
  1441.     lmargin = last_lmargin;
  1442.  
  1443.       /* If the first character on the screen isn't the first character
  1444.      in the display line, indicate this with a special character. */
  1445.       if (lmargin > 0)
  1446.     line[lmargin] = '<';
  1447.  
  1448.       if (lmargin + screenwidth < out)
  1449.     line[lmargin + screenwidth - 1] = '>';
  1450.  
  1451.       if (!rl_display_fixed || forced_display || lmargin != last_lmargin)
  1452.     {
  1453.       forced_display = 0;
  1454.       update_line (&visible_line[last_lmargin],
  1455.                &invisible_line[lmargin], 0);
  1456.  
  1457.       move_cursor_relative (c_pos - lmargin, &invisible_line[lmargin]);
  1458.       last_lmargin = lmargin;
  1459.     }
  1460.     }
  1461.   fflush (out_stream);
  1462.  
  1463.   /* Swap visible and non-visible lines. */
  1464.   {
  1465.     char *temp = visible_line;
  1466.     visible_line = invisible_line;
  1467.     invisible_line = temp;
  1468.     rl_display_fixed = 0;
  1469.   }
  1470. }
  1471.  
  1472. /* PWP: update_line() is based on finding the middle difference of each
  1473.    line on the screen; vis:
  1474.  
  1475.                  /old first difference
  1476.     /beginning of line   |              /old last same       /old EOL
  1477.     v             v              v                    v
  1478. old:    eddie> Oh, my little gruntle-buggy is to me, as lurgid as
  1479. new:    eddie> Oh, my little buggy says to me, as lurgid as
  1480.     ^             ^        ^               ^
  1481.     \beginning of line   |        \new last same       \new end of line
  1482.                  \new first difference
  1483.  
  1484.    All are character pointers for the sake of speed.  Special cases for
  1485.    no differences, as well as for end of line additions must be handeled.
  1486.  
  1487.    Could be made even smarter, but this works well enough */
  1488. static
  1489. update_line (old, new, current_line)
  1490.      register char *old, *new;
  1491.      int current_line;
  1492. {
  1493.   register char *ofd, *ols, *oe, *nfd, *nls, *ne;
  1494.   int lendiff, wsatend;
  1495.  
  1496.   /* Find first difference. */
  1497.   for (ofd = old, nfd = new;
  1498.        (ofd - old < screenwidth) && *ofd && (*ofd == *nfd);
  1499.        ofd++, nfd++)
  1500.     ;
  1501.  
  1502.   /* Move to the end of the screen line. */
  1503.   for (oe = ofd; ((oe - old) < screenwidth) && *oe; oe++);
  1504.   for (ne = nfd; ((ne - new) < screenwidth) && *ne; ne++);
  1505.  
  1506.   /* If no difference, continue to next line. */
  1507.   if (ofd == oe && nfd == ne)
  1508.     return;
  1509.  
  1510.   wsatend = 1;            /* flag for trailing whitespace */
  1511.   ols = oe - 1;            /* find last same */
  1512.   nls = ne - 1;
  1513.   while ((*ols == *nls) && (ols > ofd) && (nls > nfd))
  1514.     {
  1515.       if (*ols != ' ')
  1516.     wsatend = 0;
  1517.       ols--;
  1518.       nls--;
  1519.     }
  1520.  
  1521.   if (wsatend)
  1522.     {
  1523.       ols = oe;
  1524.       nls = ne;
  1525.     }
  1526.   else if (*ols != *nls)
  1527.     {
  1528.       if (*ols)            /* don't step past the NUL */
  1529.     ols++;
  1530.       if (*nls)
  1531.     nls++;
  1532.     }
  1533.  
  1534.   move_vert (current_line);
  1535.   move_cursor_relative (ofd - old, old);
  1536.  
  1537.   /* if (len (new) > len (old)) */
  1538.   lendiff = (nls - nfd) - (ols - ofd);
  1539.  
  1540.   /* Insert (diff(len(old),len(new)) ch */
  1541.   if (lendiff > 0)
  1542.     {
  1543.       if (terminal_can_insert)
  1544.     {
  1545.       extern char *term_IC;
  1546.  
  1547.       /* Sometimes it is cheaper to print the characters rather than
  1548.          use the terminal's capabilities. */
  1549.       if ((2 * (ne - nfd)) < lendiff && !term_IC)
  1550.         {
  1551.           output_some_chars (nfd, (ne - nfd));
  1552.           last_c_pos += (ne - nfd);
  1553.         }
  1554.       else
  1555.         {
  1556.           if (*ols)
  1557.         {
  1558.           insert_some_chars (nfd, lendiff);
  1559.           last_c_pos += lendiff;
  1560.         }
  1561.           else
  1562.         {
  1563.           /* At the end of a line the characters do not have to
  1564.              be "inserted".  They can just be placed on the screen. */
  1565.           output_some_chars (nfd, lendiff);
  1566.           last_c_pos += lendiff;
  1567.         }
  1568.           /* Copy (new) chars to screen from first diff to last match. */
  1569.           if (((nls - nfd) - lendiff) > 0)
  1570.         {
  1571.           output_some_chars (&nfd[lendiff], ((nls - nfd) - lendiff));
  1572.           last_c_pos += ((nls - nfd) - lendiff);
  1573.         }
  1574.         }
  1575.     }
  1576.       else
  1577.     {        /* cannot insert chars, write to EOL */
  1578.       output_some_chars (nfd, (ne - nfd));
  1579.       last_c_pos += (ne - nfd);
  1580.     }
  1581.     }
  1582.   else                /* Delete characters from line. */
  1583.     {
  1584.       /* If possible and inexpensive to use terminal deletion, then do so. */
  1585.       if (term_dc && (2 * (ne - nfd)) >= (-lendiff))
  1586.     {
  1587.       if (lendiff)
  1588.         delete_chars (-lendiff); /* delete (diff) characters */
  1589.  
  1590.       /* Copy (new) chars to screen from first diff to last match */
  1591.       if ((nls - nfd) > 0)
  1592.         {
  1593.           output_some_chars (nfd, (nls - nfd));
  1594.           last_c_pos += (nls - nfd);
  1595.         }
  1596.     }
  1597.       /* Otherwise, print over the existing material. */
  1598.       else
  1599.     {
  1600.       output_some_chars (nfd, (ne - nfd));
  1601.       last_c_pos += (ne - nfd);
  1602.       clear_to_eol ((oe - old) - (ne - new));
  1603.     }
  1604.     }
  1605. }
  1606.  
  1607. /* (PWP) tell the update routines that we have moved onto a
  1608.    new (empty) line. */
  1609. rl_on_new_line ()
  1610. {
  1611.   if (visible_line)
  1612.     visible_line[0] = '\0';
  1613.  
  1614.   last_c_pos = last_v_pos = 0;
  1615.   vis_botlin = last_lmargin = 0;
  1616. }
  1617.  
  1618. /* Actually update the display, period. */
  1619. rl_forced_update_display ()
  1620. {
  1621.   if (visible_line)
  1622.     {
  1623.       register char *temp = visible_line;
  1624.  
  1625.       while (*temp) *temp++ = '\0';
  1626.     }
  1627.   rl_on_new_line ();
  1628.   forced_display++;
  1629.   rl_redisplay ();
  1630. }
  1631.  
  1632. /* Move the cursor from last_c_pos to NEW, which are buffer indices.
  1633.    DATA is the contents of the screen line of interest; i.e., where
  1634.    the movement is being done. */
  1635. static void
  1636. move_cursor_relative (new, data)
  1637.      int new;
  1638.      char *data;
  1639. {
  1640.   register int i;
  1641.  
  1642.   /* It may be faster to output a CR, and then move forwards instead
  1643.      of moving backwards. */
  1644.   if (new + 1 < last_c_pos - new)
  1645.     {
  1646.       tputs (term_cr, 1, output_character_function);
  1647.       last_c_pos = 0;
  1648.     }
  1649.  
  1650.   if (last_c_pos == new) return;
  1651.  
  1652.   if (last_c_pos < new)
  1653.     {
  1654.       /* Move the cursor forward.  We do it by printing the command
  1655.      to move the cursor forward if there is one, else print that
  1656.      portion of the output buffer again.  Which is cheaper? */
  1657.  
  1658.       /* The above comment is left here for posterity.  It is faster
  1659.      to print one character (non-control) than to print a control
  1660.      sequence telling the terminal to move forward one character.
  1661.      That kind of control is for people who don't know what the
  1662.      data is underneath the cursor. */
  1663. #ifdef HACK_TERMCAP_MOTION
  1664.       extern char *term_forward_char;
  1665.  
  1666.       if (term_forward_char)
  1667.     for (i = last_c_pos; i < new; i++)
  1668.       tputs (term_forward_char, 1, output_character_function);
  1669.       else
  1670.     for (i = last_c_pos; i < new; i++)
  1671.       putc (data[i], out_stream);
  1672. #else
  1673.       for (i = last_c_pos; i < new; i++)
  1674.     putc (data[i], out_stream);
  1675. #endif                /* HACK_TERMCAP_MOTION */
  1676.     }
  1677.   else
  1678.     backspace (last_c_pos - new);
  1679.   last_c_pos = new;
  1680. }
  1681.  
  1682. /* PWP: move the cursor up or down. */
  1683. move_vert (to)
  1684.      int to;
  1685. {
  1686.   void output_character_function ();
  1687.   register int delta, i;
  1688.  
  1689.   if (last_v_pos == to) return;
  1690.  
  1691.   if (to > screenheight)
  1692.     return;
  1693.  
  1694.   if ((delta = to - last_v_pos) > 0)
  1695.     {
  1696.       for (i = 0; i < delta; i++)
  1697.     putc ('\n', out_stream);
  1698.       tputs (term_cr, 1, output_character_function);
  1699.       last_c_pos = 0;        /* because crlf() will do \r\n */
  1700.     }
  1701.   else
  1702.     {            /* delta < 0 */
  1703.       if (term_up && *term_up)
  1704.     for (i = 0; i < -delta; i++)
  1705.       tputs (term_up, 1, output_character_function);
  1706.     }
  1707.   last_v_pos = to;        /* now to is here */
  1708. }
  1709.  
  1710. /* Physically print C on out_stream.  This is for functions which know
  1711.    how to optimize the display. */
  1712. rl_show_char (c)
  1713.      int c;
  1714. {
  1715.   if (c > 127)
  1716.     {
  1717.       fprintf (out_stream, "M-");
  1718.       c -= 128;
  1719.     }
  1720.  
  1721. #ifdef DISPLAY_TABS
  1722.   if (c < 32 && c != '\t')
  1723. #else
  1724.   if (c < 32)
  1725. #endif
  1726.     {
  1727.  
  1728.       c += 64;
  1729.     }
  1730.  
  1731.   putc (c, out_stream);
  1732.   fflush (out_stream);
  1733. }
  1734.  
  1735. #ifdef DISPLAY_TABS
  1736. int
  1737. rl_character_len (c, pos)
  1738.      register int c, pos;
  1739. {
  1740.   if (c < ' ' || c > 126)
  1741.     {
  1742.       if (c == '\t')
  1743.     return (((pos | (int)7) + 1) - pos);
  1744.       else
  1745.     return (3);
  1746.     }
  1747.   else
  1748.     return (1);
  1749. }
  1750. #else
  1751. int
  1752. rl_character_len (c)
  1753.      int c;
  1754. {
  1755.   if (c < ' ' || c > 126)
  1756.     return (3);
  1757.   else
  1758.     return (1);
  1759. }
  1760. #endif  /* DISPLAY_TAB */
  1761.  
  1762. /* How to print things in the "echo-area".  The prompt is treated as a
  1763.    mini-modeline. */
  1764. rl_message (string, arg1, arg2)
  1765.      char *string;
  1766. {
  1767.   sprintf (msg_buf, string, arg1, arg2);
  1768.   rl_display_prompt = msg_buf;
  1769.   rl_redisplay ();
  1770. }
  1771.  
  1772. /* How to clear things from the "echo-area". */
  1773. rl_clear_message ()
  1774. {
  1775.   rl_display_prompt = rl_prompt;
  1776.   rl_redisplay ();
  1777. }
  1778.  
  1779. /* **************************************************************** */
  1780. /*                                    */
  1781. /*            Terminal and Termcap                */
  1782. /*                                    */
  1783. /* **************************************************************** */
  1784.  
  1785. static char *term_buffer = (char *)NULL;
  1786. static char *term_string_buffer = (char *)NULL;
  1787.  
  1788. /* Non-zero means this terminal can't really do anything. */
  1789. int dumb_term = 0;
  1790.  
  1791. char PC;
  1792. char *BC, *UP;
  1793.  
  1794. /* Some strings to control terminal actions.  These are output by tputs (). */
  1795. char *term_goto, *term_clreol, *term_cr, *term_clrpag, *term_backspace;
  1796.  
  1797. int screenwidth, screenheight;
  1798.  
  1799. /* Non-zero if we determine that the terminal can do character insertion. */
  1800. int terminal_can_insert = 0;
  1801.  
  1802. /* How to insert characters. */
  1803. char *term_im, *term_ei, *term_ic, *term_ip, *term_IC;
  1804.  
  1805. /* How to delete characters. */
  1806. char *term_dc, *term_DC;
  1807.  
  1808. #ifdef HACK_TERMCAP_MOTION
  1809. char *term_forward_char;
  1810. #endif  /* HACK_TERMCAP_MOTION */
  1811.  
  1812. /* How to go up a line. */
  1813. char *term_up;
  1814.  
  1815. /* Re-initialize the terminal considering that the TERM/TERMCAP variable
  1816.    has changed. */
  1817. rl_reset_terminal (terminal_name)
  1818.      char *terminal_name;
  1819. {
  1820.   init_terminal_io (terminal_name);
  1821. }
  1822.  
  1823. init_terminal_io (terminal_name)
  1824.      char *terminal_name;
  1825. {
  1826.   char *term = (terminal_name? terminal_name : (char *)getenv ("TERM"));
  1827.   char *tgetstr (), *buffer;
  1828.  
  1829.  
  1830.   if (!term_string_buffer)
  1831.     term_string_buffer = (char *)xmalloc (2048);
  1832.  
  1833.   if (!term_buffer)
  1834.     term_buffer = (char *)xmalloc (2048);
  1835.  
  1836.   buffer = term_string_buffer;
  1837.  
  1838.   term_clrpag = term_cr = term_clreol = (char *)NULL;
  1839.  
  1840.   if (!term)
  1841.     term = "dumb";
  1842.  
  1843.   if (tgetent (term_buffer, term) < 0)
  1844.     {
  1845.       dumb_term = 1;
  1846.       return;
  1847.     }
  1848.  
  1849.   BC = tgetstr ("pc", &buffer);
  1850.   PC = buffer ? *buffer : 0;
  1851.  
  1852.   term_backspace = tgetstr ("le", &buffer);
  1853.  
  1854.   term_cr = tgetstr ("cr", &buffer);
  1855.   term_clreol = tgetstr ("ce", &buffer);
  1856.   term_clrpag = tgetstr ("cl", &buffer);
  1857.  
  1858.   if (!term_cr)
  1859.     term_cr =  "\r";
  1860.  
  1861. #ifdef HACK_TERMCAP_MOTION
  1862.   term_forward_char = tgetstr ("nd", &buffer);
  1863. #endif  /* HACK_TERMCAP_MOTION */
  1864.  
  1865.   screenwidth = tgetnum ("co");
  1866.   if (screenwidth <= 0)
  1867.     screenwidth = 80;
  1868.   screenwidth--;        /* PWP: avoid autowrap bugs */
  1869.  
  1870.   screenheight = tgetnum ("li");
  1871.   if (screenheight <= 0)
  1872.     screenheight = 24;
  1873.  
  1874.   term_im = tgetstr ("im", &buffer);
  1875.   term_ei = tgetstr ("ei", &buffer);
  1876.   term_IC = tgetstr ("IC", &buffer);
  1877.   term_ic = tgetstr ("ic", &buffer);
  1878.  
  1879.   /* "An application program can assume that the terminal can do
  1880.       character insertion if *any one of* the capabilities `IC',
  1881.       `im', `ic' or `ip' is provided."  But we can't do anything if
  1882.       only `ip' is provided, so... */
  1883.   terminal_can_insert = (term_IC || term_im || term_ic);
  1884.  
  1885.   term_up = tgetstr ("up", &buffer);
  1886.   term_dc = tgetstr ("dc", &buffer);
  1887.   term_DC = tgetstr ("DC", &buffer);
  1888. }
  1889.  
  1890. /* A function for the use of tputs () */
  1891. static void
  1892. output_character_function (c)
  1893.      int c;
  1894. {
  1895.   putc (c, out_stream);
  1896. }
  1897.  
  1898. /* Write COUNT characters from STRING to the output stream. */
  1899. static void
  1900. output_some_chars (string, count)
  1901.      char *string;
  1902.      int count;
  1903. {
  1904.   fwrite (string, 1, count, out_stream);
  1905. }
  1906.  
  1907.  
  1908. /* Delete COUNT characters from the display line. */
  1909. static
  1910. delete_chars (count)
  1911.      int count;
  1912. {
  1913.   if (count > screenwidth)
  1914.     return;
  1915.  
  1916.   if (term_DC && *term_DC)
  1917.     {
  1918.       char *tgoto (), *buffer;
  1919.       buffer = tgoto (term_DC, 0, count);
  1920.       tputs (buffer, 1, output_character_function);
  1921.     }
  1922.   else
  1923.     {
  1924.       if (term_dc && *term_dc)
  1925.     while (count--)
  1926.       tputs (term_dc, 1, output_character_function);
  1927.     }
  1928. }
  1929.  
  1930. /* Insert COUNT character from STRING to the output stream. */
  1931. static
  1932. insert_some_chars (string, count)
  1933.      char *string;
  1934.      int count;
  1935. {
  1936.   /* If IC is defined, then we do not have to "enter" insert mode. */
  1937.   if (term_IC)
  1938.     {
  1939.       char *tgoto (), *buffer;
  1940.       buffer = tgoto (term_IC, 0, count);
  1941.       tputs (buffer, 1, output_character_function);
  1942.       output_some_chars (string, count);
  1943.     }
  1944.   else
  1945.     {
  1946.       register int i;
  1947.  
  1948.       /* If we have to turn on insert-mode, then do so. */
  1949.       if (term_im && *term_im)
  1950.     tputs (term_im, 1, output_character_function);
  1951.  
  1952.       /* If there is a special command for inserting characters, then
  1953.      use that first to open up the space. */
  1954.       if (term_ic && *term_ic)
  1955.     {
  1956.       for (i = count; i--; )
  1957.         tputs (term_ic, 1, output_character_function);
  1958.     }
  1959.  
  1960.       /* Print the text. */
  1961.       output_some_chars (string, count);
  1962.  
  1963.       /* If there is a string to turn off insert mode, we had best use
  1964.      it now. */
  1965.       if (term_ei && *term_ei)
  1966.     tputs (term_ei, 1, output_character_function);
  1967.     }
  1968. }
  1969.  
  1970. /* Move the cursor back. */
  1971. backspace (count)
  1972.      int count;
  1973. {
  1974.   register int i;
  1975.  
  1976.   if (term_backspace)
  1977.     for (i = 0; i < count; i++)
  1978.       tputs (term_backspace, 1, output_character_function);
  1979.   else
  1980.     for (i = 0; i < count; i++)
  1981.       putc ('\b', out_stream);
  1982. }
  1983.  
  1984. /* Move to the start of the next line. */
  1985. crlf ()
  1986. {
  1987.   tputs (term_cr, 1, output_character_function);
  1988.   putc ('\n', out_stream);
  1989. }
  1990.  
  1991. /* Clear to the end of the line.  COUNT is the minimum
  1992.    number of character spaces to clear, */
  1993. clear_to_eol (count)
  1994.      int count;
  1995. {
  1996.   if (term_clreol)
  1997.     {
  1998.       tputs (term_clreol, 1, output_character_function);
  1999.     }
  2000.   else
  2001.     {
  2002.       register int i;
  2003.  
  2004.       /* Do one more character space. */
  2005.       count++;
  2006.  
  2007.       for (i = 0; i < count; i++)
  2008.     putc (' ', out_stream);
  2009.  
  2010.       backspace (count);
  2011.     }
  2012. }
  2013.  
  2014.  
  2015. /* **************************************************************** */
  2016. /*                                    */
  2017. /*              Saving and Restoring the TTY                */
  2018. /*                                    */
  2019. /* **************************************************************** */
  2020.  
  2021. #ifdef NEW_TTY_DRIVER
  2022.  
  2023. /* Standard flags, including ECHO. */
  2024. static int original_tty_flags = 0;
  2025.  
  2026. /* Local mode flags, like LPASS8. */
  2027. static int local_mode_flags = 0;
  2028.  
  2029. /* Terminal characters.  This has C-s and C-q in it. */
  2030. static struct tchars original_tchars;
  2031.  
  2032. /* Local special characters.  This has the interrupt characters in it. */
  2033. static struct ltchars original_ltchars;
  2034.  
  2035. /* We use this to get and set the tty_flags. */
  2036. static struct sgttyb the_ttybuff;
  2037.  
  2038. /* Put the terminal in CBREAK mode so that we can detect key presses. */
  2039. static
  2040. rl_prep_terminal ()
  2041. {
  2042.   int tty = fileno (rl_instream);
  2043.  
  2044.   /* We always get the latest tty values.  Maybe stty changed them. */
  2045.   ioctl (tty, TIOCGETP, &the_ttybuff);
  2046.   original_tty_flags = the_ttybuff.sg_flags;
  2047.  
  2048.   readline_echoing_p = (original_tty_flags & ECHO);
  2049.  
  2050.   /* If this terminal doesn't care how the 8th bit is used,
  2051.      then we can use it for the meta-key.
  2052.      We check by seeing if BOTH odd and even parity are allowed. */
  2053.   if ((the_ttybuff.sg_flags & ODDP) && (the_ttybuff.sg_flags & EVENP))
  2054.     {
  2055. #ifdef PASS8
  2056.       the_ttybuff.sg_flags |= PASS8;
  2057. #endif
  2058.     }
  2059.  
  2060. /* Hack on local mode flags if we can. */
  2061. #if defined (TIOCLGET) && defined (LPASS8)
  2062.       {
  2063.     int flags;
  2064.  
  2065.     ioctl (tty, TIOCLGET, &local_mode_flags);
  2066.     flags = local_mode_flags | LPASS8;
  2067.     ioctl (tty, TIOCLSET, &flags);
  2068.       }
  2069. #endif
  2070.  
  2071. #ifdef TIOCGETC
  2072.   {
  2073.     struct tchars temp;
  2074.  
  2075.     ioctl (tty, TIOCGETC, &original_tchars);
  2076.     bcopy (&original_tchars, &temp, sizeof (struct tchars));
  2077.  
  2078.     /* Get rid of C-s and C-q.
  2079.        We remember the value of startc (C-q) so that if the terminal is in
  2080.        xoff state, the user can xon it by pressing that character. */
  2081.     xon_char = temp.t_startc;
  2082.     temp.t_stopc = -1;
  2083.     temp.t_startc = -1;
  2084.  
  2085.     /* If there is an XON character, bind it to restart the output. */
  2086.     if (xon_char != -1)
  2087.       rl_bind_key (xon_char, rl_restart_output);
  2088.  
  2089.     /* If there is an EOF char, bind eof_char to it. */
  2090.     if (temp.t_eofc != -1)
  2091.       eof_char = temp.t_eofc;
  2092.  
  2093. #ifdef NEVER
  2094.     /* Get rid of C-\ and C-c. */
  2095.     temp.t_intrc = temp.t_quitc = -1;
  2096. #endif
  2097.  
  2098.     ioctl (tty, TIOCSETC, &temp);
  2099.   }
  2100. #endif /* TIOCGETC */
  2101.  
  2102. #ifdef TIOCGLTC
  2103.   {
  2104.     struct ltchars temp;
  2105.  
  2106.     ioctl (tty, TIOCGLTC, &original_ltchars);
  2107.     bcopy (&original_ltchars, &temp, sizeof (struct ltchars));
  2108.  
  2109.     /* Make the interrupt keys go away.  Just enough to make people happy. */
  2110.     temp.t_dsuspc = -1;        /* C-y */
  2111.     temp.t_lnextc = -1;        /* C-v */
  2112.  
  2113.     ioctl (tty, TIOCSLTC, &temp);
  2114.   }
  2115. #endif /* TIOCGLTC */
  2116.  
  2117.   the_ttybuff.sg_flags &= ~ECHO;
  2118.   the_ttybuff.sg_flags |= CBREAK;
  2119.   ioctl (tty, TIOCSETN, &the_ttybuff);
  2120. }
  2121.  
  2122. /* Restore the terminal to its original state. */
  2123. static
  2124. rl_deprep_terminal ()
  2125. {
  2126.   int tty = fileno (rl_instream);
  2127.  
  2128.   the_ttybuff.sg_flags = original_tty_flags;
  2129.   ioctl (tty, TIOCSETN, &the_ttybuff);
  2130.   readline_echoing_p = 1;
  2131.  
  2132. #if defined (TIOCLGET) && defined (LPASS8)
  2133.   ioctl (tty, TIOCLSET, &local_mode_flags);
  2134. #endif
  2135.  
  2136. #ifdef TIOCSLTC
  2137.   ioctl (tty, TIOCSLTC, &original_ltchars);
  2138. #endif
  2139.  
  2140. #ifdef TIOCSETC
  2141.   ioctl (tty, TIOCSETC, &original_tchars);
  2142. #endif
  2143. }
  2144.  
  2145. #else  /* !defined (NEW_TTY_DRIVER) */
  2146.  
  2147. #if !defined (VMIN)
  2148. #define VMIN VEOF
  2149. #endif
  2150.  
  2151. #if !defined (VTIME)
  2152. #define VTIME VEOL
  2153. #endif
  2154.  
  2155. static struct termio otio;
  2156.  
  2157. static
  2158. rl_prep_terminal ()
  2159. {
  2160.   int tty = fileno (rl_instream);
  2161.   struct termio tio;
  2162.  
  2163.   ioctl (tty, TCGETA, &tio);
  2164.   ioctl (tty, TCGETA, &otio);
  2165.  
  2166.   readline_echoing_p = (tio.c_lflag & ECHO);
  2167.  
  2168.   tio.c_lflag &= ~(ICANON|ECHO);
  2169.   tio.c_iflag &= ~(IXON|IXOFF|IXANY|ISTRIP|INPCK);
  2170.  
  2171. #if !defined (HANDLE_SIGNALS)
  2172.   tio.c_lflag &= ~ISIG;
  2173. #endif
  2174.  
  2175.   tio.c_cc[VMIN] = 1;
  2176.   tio.c_cc[VTIME] = 0;
  2177.   ioctl (tty, TCSETAW, &tio);
  2178.   ioctl (tty, TCXONC, 1);    /* Simulate a ^Q. */
  2179. }
  2180.  
  2181. static
  2182. rl_deprep_terminal ()
  2183. {
  2184.   int tty = fileno (rl_instream);
  2185.   ioctl (tty, TCSETAW, &otio);
  2186.   ioctl (tty, TCXONC, 1);    /* Simulate a ^Q. */
  2187. }
  2188. #endif  /* NEW_TTY_DRIVER */
  2189.  
  2190.  
  2191. /* **************************************************************** */
  2192. /*                                    */
  2193. /*            Utility Functions                */
  2194. /*                                    */
  2195. /* **************************************************************** */
  2196.  
  2197. /* Return 0 if C is not a member of the class of characters that belong
  2198.    in words, or 1 if it is. */
  2199.  
  2200. int allow_pathname_alphabetic_chars = 0;
  2201. char *pathname_alphabetic_chars = "/-_=~.#$";
  2202.  
  2203. int
  2204. alphabetic (c)
  2205.      int c;
  2206. {
  2207.   char *rindex ();
  2208.   if (pure_alphabetic (c) || (numeric (c)))
  2209.     return (1);
  2210.  
  2211.   if (allow_pathname_alphabetic_chars)
  2212.     return ((int)rindex (pathname_alphabetic_chars, c));
  2213.   else
  2214.     return (0);
  2215. }
  2216.  
  2217. /* Return non-zero if C is a numeric character. */
  2218. int
  2219. numeric (c)
  2220.      int c;
  2221. {
  2222.   return (c >= '0' && c <= '9');
  2223. }
  2224.  
  2225. /* Ring the terminal bell. */
  2226. int
  2227. ding ()
  2228. {
  2229.   if (readline_echoing_p)
  2230.     {
  2231.       fprintf (stderr, "\007");
  2232.       fflush (stderr);
  2233.     }
  2234.   return (-1);
  2235. }
  2236.  
  2237. /* How to abort things. */
  2238. rl_abort ()
  2239. {
  2240.   ding ();
  2241.   rl_clear_message ();
  2242.   rl_init_argument ();
  2243.   rl_pending_input = 0;
  2244.  
  2245.   defining_kbd_macro = 0;
  2246.   while (executing_macro)
  2247.     pop_executing_macro ();
  2248.  
  2249.   longjmp (readline_top_level, 1);
  2250. }
  2251.  
  2252. /* Return a copy of the string between FROM and TO.
  2253.    FROM is inclusive, TO is not. */
  2254. static char *
  2255. rl_copy (from, to)
  2256.      int from, to;
  2257. {
  2258.   register int length;
  2259.   char *copy;
  2260.  
  2261.   /* Fix it if the caller is confused. */
  2262.   if (from > to) {
  2263.     int t = from;
  2264.     from = to;
  2265.     to = t;
  2266.   }
  2267.  
  2268.   length = to - from;
  2269.   copy = (char *)xmalloc (1 + length);
  2270.   strncpy (copy, the_line + from, length);
  2271.   copy[length] = '\0';
  2272.   return (copy);
  2273. }
  2274.  
  2275.  
  2276. /* **************************************************************** */
  2277. /*                                    */
  2278. /*            Insert and Delete                */
  2279. /*                                    */
  2280. /* **************************************************************** */
  2281.  
  2282.  
  2283. /* Insert a string of text into the line at point.  This is the only
  2284.    way that you should do insertion.  rl_insert () calls this
  2285.    function. */
  2286. rl_insert_text (string)
  2287.      char *string;
  2288. {
  2289.   extern int doing_an_undo;
  2290.   register int i, l = strlen (string);
  2291.   while (rl_end + l >= rl_line_buffer_len)
  2292.     {
  2293.       rl_line_buffer =
  2294.     (char *)xrealloc (rl_line_buffer,
  2295.               rl_line_buffer_len += DEFAULT_BUFFER_SIZE);
  2296.       the_line = rl_line_buffer;
  2297.     }
  2298.  
  2299.   for (i = rl_end; i >= rl_point; i--)
  2300.     the_line[i + l] = the_line[i];
  2301.   strncpy (the_line + rl_point, string, l);
  2302.  
  2303.   /* Remember how to undo this if we aren't undoing something. */
  2304.   if (!doing_an_undo)
  2305.     {
  2306.       /* If possible and desirable, concatenate the undos. */
  2307.       if ((strlen (string) == 1) &&
  2308.       rl_undo_list &&
  2309.       (rl_undo_list->what == UNDO_INSERT) &&
  2310.       (rl_undo_list->end == rl_point) &&
  2311.       (rl_undo_list->end - rl_undo_list->start < 20))
  2312.     rl_undo_list->end++;
  2313.       else
  2314.     rl_add_undo (UNDO_INSERT, rl_point, rl_point + l, (char *)NULL);
  2315.     }
  2316.   rl_point += l;
  2317.   rl_end += l;
  2318.   the_line[rl_end] = '\0';
  2319. }
  2320.  
  2321. /* Delete the string between FROM and TO.  FROM is
  2322.    inclusive, TO is not. */
  2323. rl_delete_text (from, to)
  2324.      int from, to;
  2325. {
  2326.   extern int doing_an_undo;
  2327.   register char *text;
  2328.  
  2329.   /* Fix it if the caller is confused. */
  2330.   if (from > to) {
  2331.     int t = from;
  2332.     from = to;
  2333.     to = t;
  2334.   }
  2335.   text = rl_copy (from, to);
  2336.   strncpy (the_line + from, the_line + to, rl_end - to);
  2337.  
  2338.   /* Remember how to undo this delete. */
  2339.   if (!doing_an_undo)
  2340.     rl_add_undo (UNDO_DELETE, from, to, text);
  2341.   else
  2342.     free (text);
  2343.  
  2344.   rl_end -= (to - from);
  2345.   the_line[rl_end] = '\0';
  2346. }
  2347.  
  2348.  
  2349. /* **************************************************************** */
  2350. /*                                    */
  2351. /*            Readline character functions            */
  2352. /*                                    */
  2353. /* **************************************************************** */
  2354.  
  2355. /* This is not a gap editor, just a stupid line input routine.  No hair
  2356.    is involved in writing any of the functions, and none should be. */
  2357.  
  2358. /* Note that:
  2359.  
  2360.    rl_end is the place in the string that we would place '\0';
  2361.    i.e., it is always safe to place '\0' there.
  2362.  
  2363.    rl_point is the place in the string where the cursor is.  Sometimes
  2364.    this is the same as rl_end.
  2365.  
  2366.    Any command that is called interactively receives two arguments.
  2367.    The first is a count: the numeric arg pased to this command.
  2368.    The second is the key which invoked this command.
  2369. */
  2370.  
  2371.  
  2372. /* **************************************************************** */
  2373. /*                                    */
  2374. /*            Movement Commands                */
  2375. /*                                    */
  2376. /* **************************************************************** */
  2377.  
  2378. /* Note that if you `optimize' the display for these functions, you cannot
  2379.    use said functions in other functions which do not do optimizing display.
  2380.    I.e., you will have to update the data base for rl_redisplay, and you
  2381.    might as well let rl_redisplay do that job. */
  2382.  
  2383. /* Move forward COUNT characters. */
  2384. rl_forward (count)
  2385.      int count;
  2386. {
  2387.   if (count < 0)
  2388.     rl_backward (-count);
  2389.   else
  2390.     while (count)
  2391.       {
  2392. #ifdef VI_MODE
  2393.     if (rl_point == (rl_end - (rl_editing_mode == vi_mode)))
  2394. #else
  2395.     if (rl_point == rl_end)
  2396. #endif
  2397.       {
  2398.         ding ();
  2399.         return;
  2400.       }
  2401.     else
  2402.       rl_point++;
  2403.     --count;
  2404.       }
  2405. }
  2406.  
  2407. /* Move backward COUNT characters. */
  2408. rl_backward (count)
  2409.      int count;
  2410. {
  2411.   if (count < 0)
  2412.     rl_forward (-count);
  2413.   else
  2414.     while (count)
  2415.       {
  2416.     if (!rl_point)
  2417.       {
  2418.         ding ();
  2419.         return;
  2420.       }
  2421.     else
  2422.       --rl_point;
  2423.     --count;
  2424.       }
  2425. }
  2426.  
  2427. /* Move to the beginning of the line. */
  2428. rl_beg_of_line ()
  2429. {
  2430.   rl_point = 0;
  2431. }
  2432.  
  2433. /* Move to the end of the line. */
  2434. rl_end_of_line ()
  2435. {
  2436.   rl_point = rl_end;
  2437. }
  2438.  
  2439. /* Move forward a word.  We do what Emacs does. */
  2440. rl_forward_word (count)
  2441.      int count;
  2442. {
  2443.   int c;
  2444.  
  2445.   if (count < 0)
  2446.     {
  2447.       rl_backward_word (-count);
  2448.       return;
  2449.     }
  2450.  
  2451.   while (count)
  2452.     {
  2453.       if (rl_point == rl_end)
  2454.     return;
  2455.  
  2456.       /* If we are not in a word, move forward until we are in one.
  2457.      Then, move forward until we hit a non-alphabetic character. */
  2458.       c = the_line[rl_point];
  2459.       if (!alphabetic (c))
  2460.     {
  2461.       while (++rl_point < rl_end)
  2462.         {
  2463.           c = the_line[rl_point];
  2464.           if (alphabetic (c)) break;
  2465.         }
  2466.     }
  2467.       if (rl_point == rl_end) return;
  2468.       while (++rl_point < rl_end)
  2469.     {
  2470.       c = the_line[rl_point];
  2471.       if (!alphabetic (c)) break;
  2472.     }
  2473.       --count;
  2474.     }
  2475. }
  2476.  
  2477. /* Move backward a word.  We do what Emacs does. */
  2478. rl_backward_word (count)
  2479.      int count;
  2480. {
  2481.   int c;
  2482.  
  2483.   if (count < 0)
  2484.     {
  2485.       rl_forward_word (-count);
  2486.       return;
  2487.     }
  2488.  
  2489.   while (count)
  2490.     {
  2491.       if (!rl_point)
  2492.     return;
  2493.  
  2494.       /* Like rl_forward_word (), except that we look at the characters
  2495.      just before point. */
  2496.  
  2497.       c = the_line[rl_point - 1];
  2498.       if (!alphabetic (c))
  2499.     {
  2500.       while (--rl_point)
  2501.         {
  2502.           c = the_line[rl_point - 1];
  2503.           if (alphabetic (c)) break;
  2504.         }
  2505.     }
  2506.  
  2507.       while (rl_point)
  2508.     {
  2509.       c = the_line[rl_point - 1];
  2510.       if (!alphabetic (c))
  2511.         break;
  2512.       else --rl_point;
  2513.     }
  2514.       --count;
  2515.     }
  2516. }
  2517.  
  2518. /* Clear the current line.  Numeric argument to C-l does this. */
  2519. rl_refresh_line ()
  2520. {
  2521.   int curr_line = last_c_pos / screenwidth;
  2522.   extern char *term_clreol;
  2523.  
  2524.   move_vert(curr_line);
  2525.   move_cursor_relative (0, the_line);   /* XXX is this right */
  2526.  
  2527.   if (term_clreol)
  2528.     tputs (term_clreol, 1, output_character_function);
  2529.  
  2530.   rl_forced_update_display ();
  2531.   rl_display_fixed = 1;
  2532. }
  2533.  
  2534. /* C-l typed to a line without quoting clears the screen, and then reprints
  2535.    the prompt and the current input line.  Given a numeric arg, redraw only
  2536.    the current line. */
  2537. rl_clear_screen ()
  2538. {
  2539.   extern char *term_clrpag;
  2540.  
  2541.   if (rl_explicit_arg)
  2542.     {
  2543.       rl_refresh_line ();
  2544.       return;
  2545.     }
  2546.  
  2547.   if (term_clrpag)
  2548.     tputs (term_clrpag, 1, output_character_function);
  2549.   else
  2550.     crlf ();
  2551.  
  2552.   rl_forced_update_display ();
  2553.   rl_display_fixed = 1;
  2554. }
  2555.  
  2556.  
  2557. /* **************************************************************** */
  2558. /*                                    */
  2559. /*            Text commands                    */
  2560. /*                                    */
  2561. /* **************************************************************** */
  2562.  
  2563. /* Insert the character C at the current location, moving point forward. */
  2564. rl_insert (count, c)
  2565.      int count, c;
  2566. {
  2567.   register int i;
  2568.   char *string;
  2569.  
  2570.   if (count <= 0)
  2571.     return;
  2572.  
  2573.   /* If we can optimize, then do it.  But don't let people crash
  2574.      readline because of extra large arguments. */
  2575.   if (count > 1 && count < 1024)
  2576.     {
  2577.       string = (char *)alloca (1 + count);
  2578.  
  2579.       for (i = 0; i < count; i++)
  2580.     string[i] = c;
  2581.  
  2582.       string[i] = '\0';
  2583.       rl_insert_text (string);
  2584.       return;
  2585.     }
  2586.  
  2587.   if (count > 1024)
  2588.     {
  2589.       int decreaser;
  2590.  
  2591.       string = (char *)alloca (1024 + 1);
  2592.  
  2593.       for (i = 0; i < 1024; i++)
  2594.     string[i] = c;
  2595.  
  2596.       while (count)
  2597.     {
  2598.       decreaser = (count > 1024 ? 1024 : count);
  2599.       string[decreaser] = '\0';
  2600.       rl_insert_text (string);
  2601.       count -= decreaser;
  2602.     }
  2603.       return;
  2604.     }
  2605.  
  2606.   /* We are inserting a single character.
  2607.      If there is pending input, then make a string of all of the
  2608.      pending characters that are bound to rl_insert, and insert
  2609.      them all. */
  2610.   if (any_typein)
  2611.     {
  2612.       int key = 0, t;
  2613.  
  2614.       i = 0;
  2615.       string = (char *)alloca (ibuffer_len + 1);
  2616.       string[i++] = c;
  2617.  
  2618.       while ((t = rl_get_char (&key)) &&
  2619.          (keymap[key].type == ISFUNC &&
  2620.           keymap[key].function == rl_insert))
  2621.     string[i++] = key;
  2622.  
  2623.       if (t)
  2624.     rl_unget_char (key);
  2625.  
  2626.       string[i] = '\0';
  2627.       rl_insert_text (string);
  2628.       return;
  2629.     }
  2630.   else
  2631.     {
  2632.       /* Inserting a single character. */
  2633.       string = (char *)alloca (2);
  2634.  
  2635.       string[1] = '\0';
  2636.       string[0] = c;
  2637.       rl_insert_text (string);
  2638.     }
  2639. }
  2640.  
  2641. /* Insert the next typed character verbatim. */
  2642. rl_quoted_insert (count)
  2643.      int count;
  2644. {
  2645.   int c = rl_read_key ();
  2646.   rl_insert (count, c);
  2647. }
  2648.  
  2649. /* Insert a tab character. */
  2650. rl_tab_insert (count)
  2651.      int count;
  2652. {
  2653.   rl_insert (count, '\t');
  2654. }
  2655.  
  2656. /* What to do when a NEWLINE is pressed.  We accept the whole line.
  2657.    KEY is the key that invoked this command.  I guess it could have
  2658.    meaning in the future. */
  2659. rl_newline (count, key)
  2660.      int count, key;
  2661. {
  2662.  
  2663.   rl_done = 1;
  2664.  
  2665. #ifdef VI_MODE
  2666.   {
  2667.     extern int vi_doing_insert;
  2668.     if (vi_doing_insert)
  2669.       {
  2670.     rl_end_undo_group ();
  2671.     vi_doing_insert = 0;
  2672.       }
  2673.   }
  2674. #endif /* VI_MODE */
  2675.  
  2676.   if (readline_echoing_p)
  2677.     {
  2678.       move_vert (vis_botlin);
  2679.       vis_botlin = 0;
  2680.       crlf ();
  2681.       fflush (out_stream);
  2682.       rl_display_fixed++;
  2683.     }
  2684. }
  2685.  
  2686. rl_clean_up_for_exit ()
  2687. {
  2688.   if (readline_echoing_p)
  2689.     {
  2690.       move_vert (vis_botlin);
  2691.       vis_botlin = 0;
  2692.       fflush (out_stream);
  2693.       rl_restart_output ();
  2694.     }
  2695. }
  2696.  
  2697. /* What to do for some uppercase characters, like meta characters,
  2698.    and some characters appearing in emacs_ctlx_keymap.  This function
  2699.    is just a stub, you bind keys to it and the code in rl_dispatch ()
  2700.    is special cased. */
  2701. rl_do_lowercase_version (ignore1, ignore2)
  2702.      int ignore1, ignore2;
  2703. {
  2704. }
  2705.  
  2706. /* Rubout the character behind point. */
  2707. rl_rubout (count)
  2708.      int count;
  2709. {
  2710.   if (count < 0)
  2711.     {
  2712.       rl_delete (-count);
  2713.       return;
  2714.     }
  2715.  
  2716.   if (!rl_point)
  2717.     {
  2718.       ding ();
  2719.       return;
  2720.     }
  2721.  
  2722.   if (count > 1)
  2723.     {
  2724.       int orig_point = rl_point;
  2725.       rl_backward (count);
  2726.       rl_kill_text (orig_point, rl_point);
  2727.     }
  2728.   else
  2729.     {
  2730.       int c = the_line[--rl_point];
  2731.       rl_delete_text (rl_point, rl_point + 1);
  2732.  
  2733.       if (rl_point == rl_end && alphabetic (c) && last_c_pos)
  2734.     {
  2735.       backspace (1);
  2736.       putc (' ', out_stream);
  2737.       backspace (1);
  2738.       last_c_pos--;
  2739.       rl_display_fixed++;
  2740.     }
  2741.     }
  2742. }
  2743.  
  2744. /* Delete the character under the cursor.  Given a numeric argument,
  2745.    kill that many characters instead. */
  2746. rl_delete (count, invoking_key)
  2747.      int count, invoking_key;
  2748. {
  2749.   if (count < 0)
  2750.     {
  2751.       rl_rubout (-count);
  2752.       return;
  2753.     }
  2754.  
  2755.   if (rl_point == rl_end)
  2756.     {
  2757.       ding ();
  2758.       return;
  2759.     }
  2760.  
  2761.   if (count > 1)
  2762.     {
  2763.       int orig_point = rl_point;
  2764.       rl_forward (count);
  2765.       rl_kill_text (orig_point, rl_point);
  2766.       rl_point = orig_point;
  2767.     }
  2768.   else
  2769.     rl_delete_text (rl_point, rl_point + 1);
  2770. }
  2771.  
  2772.  
  2773. /* **************************************************************** */
  2774. /*                                    */
  2775. /*            Kill commands                    */
  2776. /*                                    */
  2777. /* **************************************************************** */
  2778.  
  2779. /* The next two functions mimic unix line editing behaviour, except they
  2780.    save the deleted text on the kill ring.  This is safer than not saving
  2781.    it, and since we have a ring, nobody should get screwed. */
  2782.  
  2783. /* This does what C-w does in Unix.  We can't prevent people from
  2784.    using behaviour that they expect. */
  2785. rl_unix_word_rubout ()
  2786. {
  2787.   if (!rl_point) ding ();
  2788.   else {
  2789.     int orig_point = rl_point;
  2790.     while (rl_point && whitespace (the_line[rl_point - 1]))
  2791.       rl_point--;
  2792.     while (rl_point && !whitespace (the_line[rl_point - 1]))
  2793.       rl_point--;
  2794.     rl_kill_text (rl_point, orig_point);
  2795.   }
  2796. }
  2797.  
  2798. /* Here is C-u doing what Unix does.  You don't *have* to use these
  2799.    key-bindings.  We have a choice of killing the entire line, or
  2800.    killing from where we are to the start of the line.  We choose the
  2801.    latter, because if you are a Unix weenie, then you haven't backspaced
  2802.    into the line at all, and if you aren't, then you know what you are
  2803.    doing. */
  2804. rl_unix_line_discard ()
  2805. {
  2806.   if (!rl_point) ding ();
  2807.   else {
  2808.     rl_kill_text (rl_point, 0);
  2809.     rl_point = 0;
  2810.   }
  2811. }
  2812.  
  2813.  
  2814.  
  2815. /* **************************************************************** */
  2816. /*                                    */
  2817. /*            Commands For Typos                */
  2818. /*                                    */
  2819. /* **************************************************************** */
  2820.  
  2821. /* Random and interesting things in here.  */
  2822.  
  2823.  
  2824. /* **************************************************************** */
  2825. /*                                    */
  2826. /*            Changing Case                    */
  2827. /*                                    */
  2828. /* **************************************************************** */
  2829.  
  2830. /* The three kinds of things that we know how to do. */
  2831. #define UpCase 1
  2832. #define DownCase 2
  2833. #define CapCase 3
  2834.  
  2835. /* Uppercase the word at point. */
  2836. rl_upcase_word (count)
  2837.      int count;
  2838. {
  2839.   rl_change_case (count, UpCase);
  2840. }
  2841.  
  2842. /* Lowercase the word at point. */
  2843. rl_downcase_word (count)
  2844.      int count;
  2845. {
  2846.   rl_change_case (count, DownCase);
  2847. }
  2848.  
  2849. /* Upcase the first letter, downcase the rest. */
  2850. rl_capitalize_word (count)
  2851.      int count;
  2852. {
  2853.   rl_change_case (count, CapCase);
  2854. }
  2855.  
  2856. /* The meaty function.
  2857.    Change the case of COUNT words, performing OP on them.
  2858.    OP is one of UpCase, DownCase, or CapCase.
  2859.    If a negative argument is given, leave point where it started,
  2860.    otherwise, leave it where it moves to. */
  2861. rl_change_case (count, op)
  2862.      int count, op;
  2863. {
  2864.   register int start = rl_point, end;
  2865.   int state = 0;
  2866.  
  2867.   rl_forward_word (count);
  2868.   end = rl_point;
  2869.  
  2870.   if (count < 0)
  2871.     {
  2872.       int temp = start;
  2873.       start = end;
  2874.       end = temp;
  2875.     }
  2876.  
  2877.   /* We are going to modify some text, so let's prepare to undo it. */
  2878.   rl_modifying (start, end);
  2879.  
  2880.   for (; start < end; start++)
  2881.     {
  2882.       switch (op)
  2883.     {
  2884.     case UpCase:
  2885.       the_line[start] = to_upper (the_line[start]);
  2886.       break;
  2887.  
  2888.     case DownCase:
  2889.       the_line[start] = to_lower (the_line[start]);
  2890.       break;
  2891.  
  2892.     case CapCase:
  2893.       if (state == 0)
  2894.         {
  2895.           the_line[start] = to_upper (the_line[start]);
  2896.           state = 1;
  2897.         }
  2898.       else
  2899.         {
  2900.           the_line[start] = to_lower (the_line[start]);
  2901.         }
  2902.       if (!pure_alphabetic (the_line[start]))
  2903.         state = 0;
  2904.       break;
  2905.  
  2906.     default:
  2907.       abort ();
  2908.     }
  2909.     }
  2910.   rl_point = end;
  2911. }
  2912.  
  2913. /* **************************************************************** */
  2914. /*                                    */
  2915. /*            Transposition                    */
  2916. /*                                    */
  2917. /* **************************************************************** */
  2918.  
  2919. /* Transpose the words at point. */
  2920. rl_transpose_words (count)
  2921.      int count;
  2922. {
  2923.   char *word1, *word2;
  2924.   int w1_beg, w1_end, w2_beg, w2_end;
  2925.   int orig_point = rl_point;
  2926.  
  2927.   if (!count) return;
  2928.  
  2929.   /* Find the two words. */
  2930.   rl_forward_word (count);
  2931.   w2_end = rl_point;
  2932.   rl_backward_word (1);
  2933.   w2_beg = rl_point;
  2934.   rl_backward_word (count);
  2935.   w1_beg = rl_point;
  2936.   rl_forward_word (1);
  2937.   w1_end = rl_point;
  2938.  
  2939.   /* Do some check to make sure that there really are two words. */
  2940.   if ((w1_beg == w2_beg) || (w2_beg < w1_end))
  2941.     {
  2942.       ding ();
  2943.       rl_point = orig_point;
  2944.       return;
  2945.     }
  2946.  
  2947.   /* Get the text of the words. */
  2948.   word1 = rl_copy (w1_beg, w1_end);
  2949.   word2 = rl_copy (w2_beg, w2_end);
  2950.  
  2951.   /* We are about to do many insertions and deletions.  Remember them
  2952.      as one operation. */
  2953.   rl_begin_undo_group ();
  2954.  
  2955.   /* Do the stuff at word2 first, so that we don't have to worry
  2956.      about word1 moving. */
  2957.   rl_point = w2_beg;
  2958.   rl_delete_text (w2_beg, w2_end);
  2959.   rl_insert_text (word1);
  2960.  
  2961.   rl_point = w1_beg;
  2962.   rl_delete_text (w1_beg, w1_end);
  2963.   rl_insert_text (word2);
  2964.  
  2965.   /* This is exactly correct since the text before this point has not
  2966.      changed in length. */
  2967.   rl_point = w2_end;
  2968.  
  2969.   /* I think that does it. */
  2970.   rl_end_undo_group ();
  2971.   free (word1); free (word2);
  2972. }
  2973.  
  2974. /* Transpose the characters at point.  If point is at the end of the line,
  2975.    then transpose the characters before point. */
  2976. rl_transpose_chars (count)
  2977.      int count;
  2978. {
  2979.   if (!count)
  2980.     return;
  2981.  
  2982.   if (!rl_point || rl_end < 2) {
  2983.     ding ();
  2984.     return;
  2985.   }
  2986.  
  2987.   while (count) {
  2988.     if (rl_point == rl_end) {
  2989.       int t = the_line[rl_point - 1];
  2990.       the_line[rl_point - 1] = the_line[rl_point - 2];
  2991.       the_line[rl_point - 2] = t;
  2992.     } else {
  2993.       int t = the_line[rl_point];
  2994.       the_line[rl_point] = the_line[rl_point - 1];
  2995.       the_line[rl_point - 1] = t;
  2996.       if (count < 0 && rl_point)
  2997.     rl_point--;
  2998.       else
  2999.     rl_point++;
  3000.     }
  3001.     if (count < 0)
  3002.       count++;
  3003.     else
  3004.       count--;
  3005.   }
  3006. }
  3007.  
  3008.  
  3009. /* **************************************************************** */
  3010. /*                                    */
  3011. /*            Bogus Flow Control                  */
  3012. /*                                    */
  3013. /* **************************************************************** */
  3014.  
  3015. rl_restart_output (count, key)
  3016.      int count, key;
  3017. {
  3018.   int fildes = fileno (stdin);
  3019. #ifdef TIOCSTART
  3020.   ioctl (fildes, TIOCSTART, 0);
  3021. #endif /* TIOCSTART */
  3022. }
  3023.  
  3024. /* **************************************************************** */
  3025. /*                                    */
  3026. /*    Completion matching, from readline's point of view.        */
  3027. /*                                    */
  3028. /* **************************************************************** */
  3029.  
  3030. /* Pointer to the generator function for completion_matches ().
  3031.    NULL means to use filename_entry_function (), the default filename
  3032.    completer. */
  3033. Function *rl_completion_entry_function = (Function *)NULL;
  3034.  
  3035. /* Pointer to alternative function to create matches.
  3036.    Function is called with TEXT, START, and END.
  3037.    START and END are indices in RL_LINE_BUFFER saying what the boundaries
  3038.    of TEXT are.
  3039.    If this function exists and returns NULL then call the value of
  3040.    rl_completion_entry_function to try to match, otherwise use the
  3041.    array of strings returned. */
  3042. Function *rl_attempted_completion_function = (Function *)NULL;
  3043.  
  3044. /* Complete the word at or before point.  You have supplied the function
  3045.    that does the initial simple matching selection algorithm (see
  3046.    completion_matches ()).  The default is to do filename completion. */
  3047. rl_complete (ignore, invoking_key)
  3048.      int ignore, invoking_key;
  3049. {
  3050.   rl_complete_internal (TAB);
  3051. }
  3052.  
  3053. /* List the possible completions.  See description of rl_complete (). */
  3054. rl_possible_completions ()
  3055. {
  3056.   rl_complete_internal ('?');
  3057. }
  3058.  
  3059. /* The user must press "y" or "n". Non-zero return means "y" pressed. */
  3060. get_y_or_n ()
  3061. {
  3062.   int c;
  3063.  loop:
  3064.   c = rl_read_key ();
  3065.   if (c == 'y' || c == 'Y') return (1);
  3066.   if (c == 'n' || c == 'N') return (0);
  3067.   if (c == ABORT_CHAR) rl_abort ();
  3068.   ding (); goto loop;
  3069. }
  3070.  
  3071. /* Up to this many items will be displayed in response to a
  3072.    possible-completions call.  After that, we ask the user if
  3073.    she is sure she wants to see them all. */
  3074. int rl_completion_query_items = 100;
  3075.  
  3076. /* The basic list of characters that signal a break between words for the
  3077.    completer routine.  The contents of this variable is what breaks words
  3078.    in the shell, i.e. " \t\n\"\\'`@$><=" */
  3079. char *rl_basic_word_break_characters = " \t\n\"\\'`@$><=";
  3080.  
  3081. /* The list of characters that signal a break between words for
  3082.    rl_complete_internal.  The default list is the contents of
  3083.    rl_basic_word_break_characters.  */
  3084. char *rl_completer_word_break_characters = (char *)NULL;
  3085.  
  3086. /* List of characters that are word break characters, but should be left
  3087.    in TEXT when it is passed to the completion function.  The shell uses
  3088.    this to help determine what kind of completing to do. */
  3089. char *rl_special_prefixes = (char *)NULL;
  3090.  
  3091. /* If non-zero, then disallow duplicates in the matches. */
  3092. int rl_ignore_completion_duplicates = 1;
  3093.  
  3094. /* Non-zero means that the results of the matches are to be treated
  3095.    as filenames.  This is ALWAYS zero on entry, and can only be changed
  3096.    within a completion entry finder function. */
  3097. int rl_filename_completion_desired = 0;
  3098.  
  3099. /* Complete the word at or before point.
  3100.    WHAT_TO_DO says what to do with the completion.
  3101.    `?' means list the possible completions.
  3102.    TAB means do standard completion.
  3103.    `*' means insert all of the possible completions. */
  3104. rl_complete_internal (what_to_do)
  3105.      int what_to_do;
  3106. {
  3107.   char *filename_completion_function ();
  3108.   char **completion_matches (), **matches;
  3109.   Function *our_func;
  3110.   int start, end, delimiter = 0;
  3111.   char *text;
  3112.  
  3113.   if (rl_completion_entry_function)
  3114.     our_func = rl_completion_entry_function;
  3115.   else
  3116.     our_func = (int (*)())filename_completion_function;
  3117.  
  3118.   /* Only the completion entry function can change this. */
  3119.   rl_filename_completion_desired = 0;
  3120.  
  3121.   /* We now look backwards for the start of a filename/variable word. */
  3122.   end = rl_point;
  3123.   if (rl_point)
  3124.     {
  3125.       while (--rl_point &&
  3126.          !rindex (rl_completer_word_break_characters, the_line[rl_point]));
  3127.  
  3128.       /* If we are at a word break, then advance past it. */
  3129.       if (rindex (rl_completer_word_break_characters,  (the_line[rl_point])))
  3130.     {
  3131.       /* If the character that caused the word break was a quoting
  3132.          character, then remember it as the delimiter. */
  3133.       if (rindex ("\"'", the_line[rl_point]) && (end - rl_point) > 1)
  3134.         delimiter = the_line[rl_point];
  3135.  
  3136.       /* If the character isn't needed to determine something special
  3137.          about what kind of completion to perform, then advance past it. */
  3138.  
  3139.       if (!rl_special_prefixes ||
  3140.           !rindex (rl_special_prefixes, the_line[rl_point]))
  3141.         rl_point++;
  3142.     }
  3143.     }
  3144.  
  3145.   start = rl_point;
  3146.   rl_point = end;
  3147.   text = rl_copy (start, end);
  3148.  
  3149.   /* If the user wants to TRY to complete, but then wants to give
  3150.      up and use the default completion function, they set the
  3151.      variable rl_attempted_completion_function. */
  3152.   if (rl_attempted_completion_function)
  3153.     {
  3154.       matches =
  3155.     (char **)(*rl_attempted_completion_function) (text, start, end);
  3156.  
  3157.       if (matches)
  3158.     goto after_usual_completion;
  3159.     }
  3160.  
  3161.   matches = completion_matches (text, our_func, start, end);
  3162.  
  3163.  after_usual_completion:
  3164.   free (text);
  3165.  
  3166.   if (!matches)
  3167.     ding ();
  3168.   else
  3169.     {
  3170.       register int i;
  3171.  
  3172.     some_matches:
  3173.  
  3174.       /* It seems to me that in all the cases we handle we would like
  3175.      to ignore duplicate possiblilities.  Scan for the text to
  3176.      insert being identical to the other completions. */
  3177.       if (rl_ignore_completion_duplicates)
  3178.     {
  3179.       char *lowest_common;
  3180.       int j, newlen = 0;
  3181.  
  3182.       /* Sort the items. */
  3183.       /* It is safe to sort this array, because the lowest common
  3184.          denominator found in matches[0] will remain in place. */
  3185.       for (i = 0; matches[i]; i++);
  3186.       qsort (matches, i, sizeof (char *), compare_strings);
  3187.  
  3188.       /* Remember the lowest common denimator for it may be unique. */
  3189.       lowest_common = savestring (matches[0]);
  3190.  
  3191.       for (i = 0; matches[i + 1]; i++)
  3192.         {
  3193.           if (strcmp (matches[i], matches[i + 1]) == 0)
  3194.         {
  3195.           free (matches[i]);
  3196.           matches[i] = (char *)-1;
  3197.         }
  3198.           else
  3199.         newlen++;
  3200.         }
  3201.  
  3202.       /* We have marked all the dead slots with (char *)-1.
  3203.          Copy all the non-dead entries into a new array. */
  3204.       {
  3205.         char **temp_array =
  3206.           (char **)malloc ((3 + newlen) * sizeof (char *));
  3207.  
  3208.         for (i = 1, j = 1; matches[i]; i++)
  3209.           if (matches[i] != (char *)-1)
  3210.         temp_array[j++] = matches[i];
  3211.         temp_array[j] = (char *)NULL;
  3212.  
  3213.         if (matches[0] != (char *)-1)
  3214.           free (matches[0]);
  3215.         free (matches);
  3216.  
  3217.         matches = temp_array;
  3218.       }
  3219.  
  3220.       /* Place the lowest common denominator back in [0]. */
  3221.       matches[0] = lowest_common;
  3222.  
  3223.       /* If there is one string left, and it is identical to the
  3224.          lowest common denominator, then the LCD is the string to
  3225.          insert. */
  3226.       if (j == 2 && strcmp (matches[0], matches[1]) == 0)
  3227.         {
  3228.           free (matches[1]);
  3229.           matches[1] = (char *)NULL;
  3230.         }
  3231.     }
  3232.  
  3233.       switch (what_to_do)
  3234.     {
  3235.     case TAB:
  3236.       if (matches[0])
  3237.         {
  3238.           rl_delete_text (start, rl_point);
  3239.           rl_point = start;
  3240.           rl_insert_text (matches[0]);
  3241.         }
  3242.  
  3243.       /* If there are more matches, ring the bell to indicate.
  3244.          If this was the only match, and we are hacking files,
  3245.          check the file to see if it was a directory.  If so,
  3246.          add a '/' to the name.  If not, and we are at the end
  3247.          of the line, then add a space. */
  3248.       if (matches[1])
  3249.         {
  3250.           ding ();        /* There are other matches remaining. */
  3251.         }
  3252.       else
  3253.         {
  3254.           char temp_string[2];
  3255.  
  3256.           temp_string[0] = delimiter ? delimiter : ' ';
  3257.           temp_string[1] = '\0';
  3258.  
  3259.           if (rl_filename_completion_desired)
  3260.         {
  3261.           struct stat finfo;
  3262.           char *tilde_expand ();
  3263.           char *filename = tilde_expand (matches[0]);
  3264.  
  3265.           if ((stat (filename, &finfo) == 0) &&
  3266.               ((finfo.st_mode & S_IFMT) == S_IFDIR))
  3267.             {
  3268.               if (the_line[rl_point] != '/')
  3269.             rl_insert_text ("/");
  3270.             }
  3271.           else
  3272.             {
  3273.               if (rl_point == rl_end)
  3274.             rl_insert_text (temp_string);
  3275.             }
  3276.           free (filename);
  3277.         }
  3278.           else
  3279.         {
  3280.           if (rl_point == rl_end)
  3281.             rl_insert_text (temp_string);
  3282.         }
  3283.         }
  3284.       break;
  3285.  
  3286.     case '*':
  3287.       {
  3288.         int i = 1;
  3289.  
  3290.         rl_delete_text (start, rl_point);
  3291.         rl_point = start;
  3292.         rl_begin_undo_group ();
  3293.         if (matches[1])
  3294.           {
  3295.         while (matches[i])
  3296.           {
  3297.             rl_insert_text (matches[i++]);
  3298.             rl_insert_text (" ");
  3299.           }
  3300.           }
  3301.         else
  3302.           {
  3303.         rl_insert_text (matches[0]);
  3304.         rl_insert_text (" ");
  3305.           }
  3306.         rl_end_undo_group ();
  3307.       }
  3308.       break;
  3309.  
  3310.  
  3311.     case '?':
  3312.       {
  3313.         int len, count, limit, max = 0;
  3314.         int j, k, l;
  3315.  
  3316.         /* Handle simple case first.  What if there is only one answer? */
  3317.         if (!matches[1])
  3318.           {
  3319.         char *rindex (), *temp;
  3320.  
  3321.         if (rl_filename_completion_desired)
  3322.           temp = rindex (matches[0], '/');
  3323.         else
  3324.           temp = (char *)NULL;
  3325.  
  3326.         if (!temp)
  3327.           temp = matches[0];
  3328.         else
  3329.           temp++;
  3330.  
  3331.         crlf ();
  3332.         fprintf (out_stream, "%s", temp);
  3333.         crlf ();
  3334.         goto restart;
  3335.           }
  3336.  
  3337.         /* There is more than one answer.  Find out how many there are,
  3338.            and find out what the maximum printed length of a single entry
  3339.            is. */
  3340.         for (i = 1; matches[i]; i++)
  3341.           {
  3342.         char *rindex (), *temp = (char *)NULL;
  3343.  
  3344.         /* If we are hacking filenames, then only count the characters
  3345.            after the last slash in the pathname. */
  3346.         if (rl_filename_completion_desired)
  3347.           temp = rindex (matches[i], '/');
  3348.         else
  3349.           temp = (char *)NULL;
  3350.  
  3351.         if (!temp)
  3352.           temp = matches[i];
  3353.         else
  3354.           temp++;
  3355.  
  3356.         if (strlen (temp) > max)
  3357.           max = strlen (temp);
  3358.           }
  3359.  
  3360.         len = i;
  3361.  
  3362.         /* If there are many items, then ask the user if she
  3363.            really wants to see them all. */
  3364.         if (len >= rl_completion_query_items)
  3365.           {
  3366.         crlf ();
  3367.         fprintf (out_stream,
  3368.              "There are %d possibilities.  Do you really", len);
  3369.         crlf ();
  3370.         fprintf (out_stream, "wish to see them all? (y or n)");
  3371.         fflush (out_stream);
  3372.         if (!get_y_or_n ())
  3373.           {
  3374.             crlf ();
  3375.             goto restart;
  3376.           }
  3377.           }
  3378.         /* How many items of MAX length can we fit in the screen window? */
  3379.         max += 2;
  3380.         limit = screenwidth / max;
  3381.         if (limit != 1 && (limit * max == screenwidth))
  3382.           limit--;
  3383.  
  3384.         /* How many iterations of the printing loop? */
  3385.         count = (len + (limit - 1)) / limit;
  3386.  
  3387.         /* Watch out for special case.  If LEN is less than LIMIT, then
  3388.            just do the inner printing loop. */
  3389.         if (len < limit) count = 1;
  3390.  
  3391.         /* Sort the items if they are not already sorted. */
  3392.         if (!rl_ignore_completion_duplicates)
  3393.           qsort (matches, len, sizeof (char *), compare_strings);
  3394.  
  3395.         /* Print the sorted items, up-and-down alphabetically, like
  3396.            ls might. */
  3397.         crlf ();
  3398.  
  3399.         for (i = 1; i < count + 1; i++)
  3400.           {
  3401.         for (j = 0, l = i; j < limit; j++)
  3402.           {
  3403.             if (l > len || !matches[l])
  3404.               {
  3405.             break;
  3406.               }
  3407.             else
  3408.               {
  3409.             char *rindex (), *temp = (char *)NULL;
  3410.  
  3411.             if (rl_filename_completion_desired)
  3412.               temp = rindex (matches[l], '/');
  3413.             else
  3414.               temp = (char *)NULL;
  3415.  
  3416.             if (!temp)
  3417.               temp = matches[l];
  3418.             else
  3419.               temp++;
  3420.  
  3421.             fprintf (out_stream, "%s", temp);
  3422.             for (k = 0; k < max - strlen (temp); k++)
  3423.               putc (' ', out_stream);
  3424.               }
  3425.             l += count;
  3426.           }
  3427.         crlf ();
  3428.           }
  3429.       restart:
  3430.  
  3431.         rl_on_new_line ();
  3432.       }
  3433.       break;
  3434.  
  3435.     default:
  3436.       abort ();
  3437.     }
  3438.  
  3439.       for (i = 0; matches[i]; i++)
  3440.     free (matches[i]);
  3441.       free (matches);
  3442.     }
  3443. }
  3444.  
  3445. /* Stupid comparison routine for qsort () ing strings. */
  3446. static int
  3447. compare_strings (s1, s2)
  3448.   char **s1, **s2;
  3449. {
  3450.   return (strcmp (*s1, *s2));
  3451. }
  3452.  
  3453. /* A completion function for usernames.
  3454.    TEXT contains a partial username preceded by a random
  3455.    character (usually `~').  */
  3456. char *
  3457. username_completion_function (text, state)
  3458.      int state;
  3459.      char *text;
  3460. {
  3461.   static char *username = (char *)NULL;
  3462.   static struct passwd *entry;
  3463.   static int namelen;
  3464.  
  3465.   if (!state)
  3466.     {
  3467.       if (username)
  3468.     free (username);
  3469.       username = savestring (&text[1]);
  3470.       namelen = strlen (username);
  3471.       setpwent ();
  3472.     }
  3473.  
  3474.   while (entry = getpwent ())
  3475.     {
  3476.       if (strncmp (username, entry->pw_name, namelen) == 0)
  3477.     break;
  3478.     }
  3479.  
  3480.   if (!entry)
  3481.     {
  3482.       endpwent ();
  3483.       return ((char *)NULL);
  3484.     }
  3485.   else
  3486.     {
  3487.       char *value = (char *)xmalloc (2 + strlen (entry->pw_name));
  3488.       *value = *text;
  3489.       strcpy (value + 1, entry->pw_name);
  3490.       rl_filename_completion_desired = 1;
  3491.       return (value);
  3492.     }
  3493. }
  3494.  
  3495. /* If non-null, this contains the address of a function to call if the
  3496.    standard meaning for expanding a tilde fails.  The function is called
  3497.    with the text (sans tilde, as in "foo"), and returns a malloc()'ed string
  3498.    which is the expansion, or a NULL pointer if there is no expansion. */
  3499. Function *rl_tilde_expander = (Function *)NULL;
  3500.  
  3501. /* Expand FILENAME if it begins with a tilde.  This always returns
  3502.    a new string. */
  3503. char *
  3504. tilde_expand (filename)
  3505.      char *filename;
  3506. {
  3507.   char *dirname = filename ? savestring (filename) : (char *)NULL;
  3508.  
  3509.   if (dirname && *dirname == '~')
  3510.     {
  3511.       char *temp_name;
  3512.       if (!dirname[1] || dirname[1] == '/')
  3513.     {
  3514.       /* Prepend $HOME to the rest of the string. */
  3515.       char *temp_home = (char *)getenv ("HOME");
  3516.  
  3517.       temp_name = (char *)alloca (1 + strlen (&dirname[1])
  3518.                       + (temp_home? strlen (temp_home) : 0));
  3519.       temp_name[0] = '\0';
  3520.       if (temp_home)
  3521.         strcpy (temp_name, temp_home);
  3522.       strcat (temp_name, &dirname[1]);
  3523.       free (dirname);
  3524.       dirname = savestring (temp_name);
  3525.     }
  3526.       else
  3527.     {
  3528.       struct passwd *getpwnam (), *user_entry;
  3529.       char *username = (char *)alloca (257);
  3530.       int i, c;
  3531.  
  3532.       for (i = 1; c = dirname[i]; i++)
  3533.         {
  3534.           if (c == '/') break;
  3535.           else username[i - 1] = c;
  3536.         }
  3537.       username[i - 1] = '\0';
  3538.  
  3539.       if (!(user_entry = getpwnam (username)))
  3540.         {
  3541.           /* If the calling program has a special syntax for
  3542.          expanding tildes, and we couldn't find a standard
  3543.          expansion, then let them try. */
  3544.           if (rl_tilde_expander)
  3545.         {
  3546.           char *expansion;
  3547.  
  3548.           expansion = (char *)(*rl_tilde_expander) (username);
  3549.  
  3550.           if (expansion)
  3551.             {
  3552.               temp_name = (char *)alloca (1 + strlen (expansion)
  3553.                           + strlen (&dirname[i]));
  3554.               strcpy (temp_name, expansion);
  3555.               strcat (temp_name, &dirname[i]);
  3556.               free (expansion);
  3557.               goto return_name;
  3558.             }
  3559.         }
  3560.           /*
  3561.            * We shouldn't report errors.
  3562.            */
  3563.         }
  3564.       else
  3565.         {
  3566.           temp_name = (char *)alloca (1 + strlen (user_entry->pw_dir)
  3567.                       + strlen (&dirname[i]));
  3568.           strcpy (temp_name, user_entry->pw_dir);
  3569.           strcat (temp_name, &dirname[i]);
  3570.         return_name:
  3571.           free (dirname);
  3572.           dirname = savestring (temp_name);
  3573.         }
  3574.     }
  3575.     }
  3576.   return (dirname);
  3577. }
  3578.  
  3579.  
  3580. /* **************************************************************** */
  3581. /*                                    */
  3582. /*            Undo, and Undoing                */
  3583. /*                                    */
  3584. /* **************************************************************** */
  3585.  
  3586. /* Non-zero tells rl_delete_text and rl_insert_text to not add to
  3587.    the undo list. */
  3588. int doing_an_undo = 0;
  3589.  
  3590. /* The current undo list for THE_LINE. */
  3591. UNDO_LIST *rl_undo_list = (UNDO_LIST *)NULL;
  3592.  
  3593. /* Remember how to undo something.  Concatenate some undos if that
  3594.    seems right. */
  3595. rl_add_undo (what, start, end, text)
  3596.      enum undo_code what;
  3597.      int start, end;
  3598.      char *text;
  3599. {
  3600.   UNDO_LIST *temp = (UNDO_LIST *)xmalloc (sizeof (UNDO_LIST));
  3601.   temp->what = what;
  3602.   temp->start = start;
  3603.   temp->end = end;
  3604.   temp->text = text;
  3605.   temp->next = rl_undo_list;
  3606.   rl_undo_list = temp;
  3607. }
  3608.  
  3609. /* Free the existing undo list. */
  3610. free_undo_list ()
  3611. {
  3612.   while (rl_undo_list) {
  3613.     UNDO_LIST *release = rl_undo_list;
  3614.     rl_undo_list = rl_undo_list->next;
  3615.  
  3616.     if (release->what == UNDO_DELETE)
  3617.       free (release->text);
  3618.  
  3619.     free (release);
  3620.   }
  3621. }
  3622.  
  3623. /* Undo the next thing in the list.  Return 0 if there
  3624.    is nothing to undo, or non-zero if there was. */
  3625. int
  3626. rl_do_undo ()
  3627. {
  3628.   UNDO_LIST *release;
  3629.   int waiting_for_begin = 0;
  3630.  
  3631. undo_thing:
  3632.   if (!rl_undo_list)
  3633.     return (0);
  3634.  
  3635.   doing_an_undo = 1;
  3636.  
  3637.   switch (rl_undo_list->what) {
  3638.  
  3639.     /* Undoing deletes means inserting some text. */
  3640.   case UNDO_DELETE:
  3641.     rl_point = rl_undo_list->start;
  3642.     rl_insert_text (rl_undo_list->text);
  3643.     free (rl_undo_list->text);
  3644.     break;
  3645.  
  3646.     /* Undoing inserts means deleting some text. */
  3647.   case UNDO_INSERT:
  3648.     rl_delete_text (rl_undo_list->start, rl_undo_list->end);
  3649.     rl_point = rl_undo_list->start;
  3650.     break;
  3651.  
  3652.     /* Undoing an END means undoing everything 'til we get to
  3653.        a BEGIN. */
  3654.   case UNDO_END:
  3655.     waiting_for_begin++;
  3656.     break;
  3657.  
  3658.     /* Undoing a BEGIN means that we are done with this group. */
  3659.   case UNDO_BEGIN:
  3660.     if (waiting_for_begin)
  3661.       waiting_for_begin--;
  3662.     else
  3663.       abort ();
  3664.     break;
  3665.   }
  3666.  
  3667.   doing_an_undo = 0;
  3668.  
  3669.   release = rl_undo_list;
  3670.   rl_undo_list = rl_undo_list->next;
  3671.   free (release);
  3672.  
  3673.   if (waiting_for_begin)
  3674.     goto undo_thing;
  3675.  
  3676.   return (1);
  3677. }
  3678.  
  3679. /* Begin a group.  Subsequent undos are undone as an atomic operation. */
  3680. rl_begin_undo_group ()
  3681. {
  3682.   rl_add_undo (UNDO_BEGIN, 0, 0, 0);
  3683. }
  3684.  
  3685. /* End an undo group started with rl_begin_undo_group (). */
  3686. rl_end_undo_group ()
  3687. {
  3688.   rl_add_undo (UNDO_END, 0, 0, 0);
  3689. }
  3690.  
  3691. /* Save an undo entry for the text from START to END. */
  3692. rl_modifying (start, end)
  3693.      int start, end;
  3694. {
  3695.   if (start > end)
  3696.     {
  3697.       int t = start;
  3698.       start = end;
  3699.       end = t;
  3700.     }
  3701.  
  3702.   if (start != end)
  3703.     {
  3704.       char *temp = rl_copy (start, end);
  3705.       rl_begin_undo_group ();
  3706.       rl_add_undo (UNDO_DELETE, start, end, temp);
  3707.       rl_add_undo (UNDO_INSERT, start, end, (char *)NULL);
  3708.       rl_end_undo_group ();
  3709.     }
  3710. }
  3711.  
  3712. /* Revert the current line to its previous state. */
  3713. rl_revert_line ()
  3714. {
  3715.   if (!rl_undo_list) ding ();
  3716.   else {
  3717.     while (rl_undo_list)
  3718.       rl_do_undo ();
  3719.   }
  3720. }
  3721.  
  3722. /* Do some undoing of things that were done. */
  3723. rl_undo_command (count)
  3724. {
  3725.   if (count < 0) return;    /* Nothing to do. */
  3726.  
  3727.   while (count)
  3728.     {
  3729.       if (rl_do_undo ())
  3730.     {
  3731.       count--;
  3732.     }
  3733.       else
  3734.     {
  3735.       ding ();
  3736.       break;
  3737.     }
  3738.     }
  3739. }
  3740.  
  3741. /* **************************************************************** */
  3742. /*                                    */
  3743. /*            History Utilities                */
  3744. /*                                    */
  3745. /* **************************************************************** */
  3746.  
  3747. /* We already have a history library, and that is what we use to control
  3748.    the history features of readline.  However, this is our local interface
  3749.    to the history mechanism. */
  3750.  
  3751. /* While we are editing the history, this is the saved
  3752.    version of the original line. */
  3753. HIST_ENTRY *saved_line_for_history = (HIST_ENTRY *)NULL;
  3754.  
  3755. /* Set the history pointer back to the last entry in the history. */
  3756. start_using_history ()
  3757. {
  3758.   using_history ();
  3759.   if (saved_line_for_history)
  3760.     free_history_entry (saved_line_for_history);
  3761.  
  3762.   saved_line_for_history = (HIST_ENTRY *)NULL;
  3763. }
  3764.  
  3765. /* Free the contents (and containing structure) of a HIST_ENTRY. */
  3766. free_history_entry (entry)
  3767.      HIST_ENTRY *entry;
  3768. {
  3769.   if (!entry) return;
  3770.   if (entry->line)
  3771.     free (entry->line);
  3772.   free (entry);
  3773. }
  3774.  
  3775. /* Perhaps put back the current line if it has changed. */
  3776. maybe_replace_line ()
  3777. {
  3778.   HIST_ENTRY *temp = current_history ();
  3779.  
  3780.   /* If the current line has changed, save the changes. */
  3781.   if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list)) {
  3782.     temp = replace_history_entry (where_history (), the_line, rl_undo_list);
  3783.     free (temp->line);
  3784.     free (temp);
  3785.   }
  3786. }
  3787.  
  3788. /* Put back the saved_line_for_history if there is one. */
  3789. maybe_unsave_line ()
  3790. {
  3791.   if (saved_line_for_history) {
  3792.     strcpy (the_line, saved_line_for_history->line);
  3793.     rl_undo_list = (UNDO_LIST *)saved_line_for_history->data;
  3794.     free_history_entry (saved_line_for_history);
  3795.     saved_line_for_history = (HIST_ENTRY *)NULL;
  3796.     rl_end = rl_point = strlen (the_line);
  3797.   } else {
  3798.     ding ();
  3799.   }
  3800. }
  3801.  
  3802. /* Save the current line in saved_line_for_history. */
  3803. maybe_save_line ()
  3804. {
  3805.   if (!saved_line_for_history) {
  3806.     saved_line_for_history = (HIST_ENTRY *)xmalloc (sizeof (HIST_ENTRY));
  3807.     saved_line_for_history->line = savestring (the_line);
  3808.     saved_line_for_history->data = (char *)rl_undo_list;
  3809.   }
  3810. }
  3811.  
  3812.  
  3813.  
  3814. /* **************************************************************** */
  3815. /*                                    */
  3816. /*            History Commands                */
  3817. /*                                    */
  3818. /* **************************************************************** */
  3819.  
  3820. /* Meta-< goes to the start of the history. */
  3821. rl_beginning_of_history ()
  3822. {
  3823.   rl_get_previous_history (1 + where_history ());
  3824. }
  3825.  
  3826. /* Meta-> goes to the end of the history.  (The current line). */
  3827. rl_end_of_history ()
  3828. {
  3829.   maybe_replace_line ();
  3830.   using_history ();
  3831.   maybe_unsave_line ();
  3832. }
  3833.  
  3834. /* Move down to the next history line. */
  3835. rl_get_next_history (count)
  3836.      int count;
  3837. {
  3838.   HIST_ENTRY *temp = (HIST_ENTRY *)NULL;
  3839.  
  3840.   if (count < 0)
  3841.     {
  3842.       rl_get_previous_history (-count);
  3843.       return;
  3844.     }
  3845.  
  3846.   if (!count)
  3847.     return;
  3848.  
  3849.   maybe_replace_line ();
  3850.  
  3851.   while (count)
  3852.     {
  3853.       temp = next_history ();
  3854.       if (!temp)
  3855.     break;
  3856.       --count;
  3857.     }
  3858.  
  3859.   if (!temp)
  3860.     maybe_unsave_line ();
  3861.   else
  3862.     {
  3863.       strcpy (the_line, temp->line);
  3864.       rl_undo_list = (UNDO_LIST *)temp->data;
  3865.       rl_end = rl_point = strlen (the_line);
  3866.     }
  3867. }
  3868.  
  3869. /* Get the previous item out of our interactive history, making it the current
  3870.    line.  If there is no previous history, just ding. */
  3871. rl_get_previous_history (count)
  3872.      int count;
  3873. {
  3874.   HIST_ENTRY *old_temp = (HIST_ENTRY *)NULL;
  3875.   HIST_ENTRY *temp = (HIST_ENTRY *)NULL;
  3876.  
  3877.   if (count < 0)
  3878.     {
  3879.       rl_get_next_history (-count);
  3880.       return;
  3881.     }
  3882.  
  3883.   if (!count)
  3884.     return;
  3885.  
  3886.   /* If we don't have a line saved, then save this one. */
  3887.   maybe_save_line ();
  3888.  
  3889.   /* If the current line has changed, save the changes. */
  3890.   maybe_replace_line ();
  3891.  
  3892.   while (count)
  3893.     {
  3894.       temp = previous_history ();
  3895.       if (!temp)
  3896.     break;
  3897.       else
  3898.     old_temp = temp;
  3899.       --count;
  3900.     }
  3901.  
  3902.   /* If there was a large argument, and we moved back to the start of the
  3903.      history, that is not an error.  So use the last value found. */
  3904.   if (!temp && old_temp)
  3905.     temp = old_temp;
  3906.  
  3907.   if (!temp)
  3908.     ding ();
  3909.   else
  3910.     {
  3911.       strcpy (the_line, temp->line);
  3912.       rl_undo_list = (UNDO_LIST *)temp->data;
  3913.       rl_end = rl_point = strlen (the_line);
  3914. #ifdef VI_MODE
  3915.       if (rl_editing_mode == vi_mode)
  3916.     rl_point = 0;
  3917. #endif /* VI_MODE */
  3918.     }
  3919. }
  3920.  
  3921. /* There is a command in ksh which yanks into this line, the last word
  3922.    of the previous line.  Here it is.  We left it on M-. */
  3923. rl_yank_previous_last_arg (ignore)
  3924.      int ignore;
  3925. {
  3926. }
  3927.  
  3928.  
  3929.  
  3930. /* **************************************************************** */
  3931. /*                                    */
  3932. /*            I-Search and Searching                */
  3933. /*                                    */
  3934. /* **************************************************************** */
  3935.  
  3936. /* Search backwards through the history looking for a string which is typed
  3937.    interactively.  Start with the current line. */
  3938. rl_reverse_search_history (sign, key)
  3939.      int sign;
  3940.      int key;
  3941. {
  3942.   rl_search_history (-sign, key);
  3943. }
  3944.  
  3945. /* Search forwards through the history looking for a string which is typed
  3946.    interactively.  Start with the current line. */
  3947. rl_forward_search_history (sign, key)
  3948.      int sign;
  3949.      int key;
  3950. {
  3951.   rl_search_history (sign, key);
  3952. }
  3953.  
  3954. /* Display the current state of the search in the echo-area.
  3955.    SEARCH_STRING contains the string that is being searched for,
  3956.    DIRECTION is zero for forward, or 1 for reverse,
  3957.    WHERE is the history list number of the current line.  If it is
  3958.    -1, then this line is the starting one. */
  3959. rl_display_search (search_string, reverse_p, where)
  3960.      char *search_string;
  3961.      int reverse_p, where;
  3962. {
  3963.   char *message = (char *)NULL;
  3964.  
  3965.   message =
  3966.     (char *)alloca (1 + (search_string ? strlen (search_string) : 0) + 30);
  3967.  
  3968.   *message = '\0';
  3969.  
  3970. #ifdef NEVER
  3971.   if (where != -1)
  3972.     sprintf (message, "[%d]", where + history_base);
  3973. #endif
  3974.  
  3975.   strcat (message, "(");
  3976.  
  3977.   if (reverse_p)
  3978.     strcat (message, "reverse-");
  3979.  
  3980.   strcat (message, "i-search)`");
  3981.  
  3982.   if (search_string)
  3983.     strcat (message, search_string);
  3984.  
  3985.   strcat (message, "': ");
  3986.   rl_message (message, 0, 0);
  3987.   rl_redisplay ();
  3988. }
  3989.  
  3990. /* Search through the history looking for an interactively typed string.
  3991.    This is analogous to i-search.  We start the search in the current line.
  3992.    DIRECTION is which direction to search; > 0 means forward, < 0 means
  3993.    backwards. */
  3994. rl_search_history (direction, invoking_key)
  3995.      int direction;
  3996.      int invoking_key;
  3997. {
  3998.   /* The string that the user types in to search for. */
  3999.   char *search_string = (char *)alloca (128);
  4000.  
  4001.   /* The current length of SEARCH_STRING. */
  4002.   int search_string_index;
  4003.  
  4004.   /* The list of lines to search through. */
  4005.   char **lines;
  4006.  
  4007.   /* The length of LINES. */
  4008.   int hlen;
  4009.  
  4010.   /* Where we get LINES from. */
  4011.   HIST_ENTRY **hlist = history_list ();
  4012.  
  4013.   int orig_point = rl_point;
  4014.   int orig_line = where_history ();
  4015.   int last_found_line = orig_line;
  4016.   int c, done = 0;
  4017.   register int i = 0;
  4018.  
  4019.  
  4020.   /* The line currently being searched. */
  4021.   char *sline;
  4022.  
  4023.   /* Offset in that line. */
  4024.   int index;
  4025.  
  4026.   /* Non-zero if we are doing a reverse search. */
  4027.   int reverse = (direction < 0);
  4028.  
  4029.   /* Create an arrary of pointers to the lines that we want to search. */
  4030.  
  4031.   maybe_replace_line ();
  4032.   if (hlist)
  4033.     for (i = 0; hlist[i]; i++);
  4034.  
  4035.   /* Allocate space for this many lines, +1 for the current input line,
  4036.      and remember those lines. */
  4037.   lines = (char **)alloca ((1 + (hlen = i)) * sizeof (char *));
  4038.   for (i = 0; i < hlen; i++)
  4039.     lines[i] = hlist[i]->line;
  4040.  
  4041.   if (saved_line_for_history)
  4042.     lines[i] = saved_line_for_history->line;
  4043.   else
  4044.     {
  4045.       /* So I have to type it in this way instead. */
  4046.       lines[i] = (char *)alloca (1 + strlen (the_line));
  4047.       strcpy (lines[i], &the_line[0]);
  4048.     }
  4049.  
  4050.   hlen++;
  4051.  
  4052.   /* The line where we start the search. */
  4053.   i = orig_line;
  4054.  
  4055.   /* Initialize search parameters. */
  4056.   *search_string = '\0';
  4057.   search_string_index = 0;
  4058.  
  4059.   rl_display_search (search_string, reverse, -1);
  4060.  
  4061.   sline = the_line;
  4062.   index = rl_point;
  4063.  
  4064.   while (!done)
  4065.     {
  4066.       c = rl_read_key ();
  4067.  
  4068.       /* Hack C to Do What I Mean. */
  4069.       {
  4070.     Function *f = (Function *)NULL;
  4071.  
  4072.     if (keymap[c].type == ISFUNC)
  4073.       f = keymap[c].function;
  4074.  
  4075.     if (f == rl_reverse_search_history)
  4076.       c = reverse ? -1 : -2;
  4077.     else if (f == rl_forward_search_history)
  4078.       c =  !reverse ? -1 : -2;
  4079.       }
  4080.  
  4081.       switch (c)
  4082.     {
  4083.     case ESC:
  4084.       done = 1;
  4085.       continue;
  4086.  
  4087.       /* case invoking_key: */
  4088.     case -1:
  4089.       goto search_again;
  4090.  
  4091.       /* switch directions */
  4092.     case -2:
  4093.       direction = -direction;
  4094.       reverse = (direction < 0);
  4095.  
  4096.       goto do_search;
  4097.  
  4098.     case CTRL ('G'):
  4099.       strcpy (the_line, lines[orig_line]);
  4100.       rl_point = orig_point;
  4101.       rl_end = strlen (the_line);
  4102.       rl_clear_message ();
  4103.       return;
  4104.  
  4105.     default:
  4106.       if (c < 32 || c > 126)
  4107.         {
  4108.           rl_execute_next (c);
  4109.           done = 1;
  4110.           continue;
  4111.         }
  4112.       else
  4113.         {
  4114.           search_string[search_string_index++] = c;
  4115.           search_string[search_string_index] = '\0';
  4116.           goto do_search;
  4117.  
  4118.         search_again:
  4119.  
  4120.           if (!search_string_index)
  4121.         continue;
  4122.           else
  4123.         {
  4124.           if (reverse)
  4125.             --index;
  4126.           else
  4127.             if (index != strlen (sline))
  4128.               ++index;
  4129.             else
  4130.               ding ();
  4131.         }
  4132.         do_search:
  4133.  
  4134.           while (1)
  4135.         {
  4136.           if (reverse)
  4137.             {
  4138.               while (index >= 0)
  4139.             if (strncmp
  4140.                 (search_string,
  4141.                  sline + index,
  4142.                  search_string_index) == 0)
  4143.               goto string_found;
  4144.             else
  4145.               index--;
  4146.             }
  4147.           else
  4148.             {
  4149.               register int limit =
  4150.             (strlen (sline) - search_string_index) + 1;
  4151.  
  4152.               while (index < limit)
  4153.             {
  4154.               if (strncmp (search_string,
  4155.                        sline + index,
  4156.                        search_string_index) == 0)
  4157.                 goto string_found;
  4158.               index++;
  4159.             }
  4160.             }
  4161.  
  4162.         next_line:
  4163.           i += direction;
  4164.  
  4165.           /* At limit for direction? */
  4166.           if ((reverse && i < 0) ||
  4167.               (!reverse && i == hlen))
  4168.             goto search_failed;
  4169.  
  4170.           sline = lines[i];
  4171.           if (reverse)
  4172.             index = strlen (sline);
  4173.           else
  4174.             index = 0;
  4175.  
  4176.           /* If the search string is longer than the current
  4177.              line, no match. */
  4178.           if (search_string_index > strlen (sline))
  4179.             goto next_line;
  4180.  
  4181.           /* Start actually searching. */
  4182.           if (reverse)
  4183.             index -= search_string_index;
  4184.         }
  4185.  
  4186.         search_failed:
  4187.           /* We cannot find the search string.  Ding the bell. */
  4188.           ding ();
  4189.           i = last_found_line;
  4190.           break;
  4191.  
  4192.         string_found:
  4193.           /* We have found the search string.  Just display it.  But don't
  4194.          actually move there in the history list until the user accepts
  4195.          the location. */
  4196.           strcpy (the_line, lines[i]);
  4197.           rl_point = index;
  4198.           rl_end = strlen (the_line);
  4199.           last_found_line = i;
  4200.           rl_display_search (search_string, reverse,
  4201.                  (i == orig_line) ? -1 : i);
  4202.         }
  4203.     }
  4204.       continue;
  4205.     }
  4206.   /* The user has won.  They found the string that they wanted.  Now all
  4207.      we have to do is place them there. */
  4208.   {
  4209.     int now = last_found_line;
  4210.  
  4211.     /* First put back the original state. */
  4212.     strcpy (the_line, lines[orig_line]);
  4213.  
  4214.     if (now < orig_line)
  4215.       rl_get_previous_history (orig_line - now);
  4216.     else
  4217.       rl_get_next_history (now - orig_line);
  4218.  
  4219.     rl_point = index;
  4220.     rl_clear_message ();
  4221.   }
  4222. }
  4223.  
  4224. /* Make C be the next command to be executed. */
  4225. rl_execute_next (c)
  4226.      int c;
  4227. {
  4228.   rl_pending_input = c;
  4229. }
  4230.  
  4231. /* **************************************************************** */
  4232. /*                                    */
  4233. /*            Killing Mechanism                */
  4234. /*                                    */
  4235. /* **************************************************************** */
  4236.  
  4237. /* What we assume for a max number of kills. */
  4238. #define DEFAULT_MAX_KILLS 10
  4239.  
  4240. /* The real variable to look at to find out when to flush kills. */
  4241. int rl_max_kills = DEFAULT_MAX_KILLS;
  4242.  
  4243. /* Where to store killed text. */
  4244. char **rl_kill_ring = (char **)NULL;
  4245.  
  4246. /* Where we are in the kill ring. */
  4247. int rl_kill_index = 0;
  4248.  
  4249. /* How many slots we have in the kill ring. */
  4250. int rl_kill_ring_length = 0;
  4251.  
  4252. /* How to say that you only want to save a certain amount
  4253.    of kill material. */
  4254. rl_set_retained_kills (num)
  4255.      int num;
  4256. {}
  4257.  
  4258. /* The way to kill something.  This appends or prepends to the last
  4259.    kill, if the last command was a kill command.  if FROM is less
  4260.    than TO, then the text is appended, otherwise prepended.  If the
  4261.    last command was not a kill command, then a new slot is made for
  4262.    this kill. */
  4263. rl_kill_text (from, to)
  4264.      int from, to;
  4265. {
  4266.   int slot;
  4267.   char *text = rl_copy (from, to);
  4268.  
  4269.   /* Is there anything to kill? */
  4270.   if (from == to) {
  4271.     free (text);
  4272.     last_command_was_kill++;
  4273.     return;
  4274.   }
  4275.  
  4276.   /* Delete the copied text from the line. */
  4277.   rl_delete_text (from, to);
  4278.  
  4279.   /* First, find the slot to work with. */
  4280.   if (!last_command_was_kill) {
  4281.  
  4282.     /* Get a new slot.  */
  4283.     if (!rl_kill_ring) {
  4284.  
  4285.       /* If we don't have any defined, then make one. */
  4286.       rl_kill_ring =
  4287.     (char **)xmalloc (((rl_kill_ring_length = 1) + 1) * sizeof (char *));
  4288.       slot = 1;
  4289.  
  4290.     } else {
  4291.  
  4292.       /* We have to add a new slot on the end, unless we have exceeded
  4293.      the max limit for remembering kills. */
  4294.       slot = rl_kill_ring_length;
  4295.       if (slot == rl_max_kills) {
  4296.     register int i;
  4297.     free (rl_kill_ring[0]);
  4298.     for (i = 0; i < slot; i++)
  4299.       rl_kill_ring[i] = rl_kill_ring[i + 1];
  4300.       } else {
  4301.     rl_kill_ring =
  4302.       (char **)xrealloc (rl_kill_ring,
  4303.                  ((slot = (rl_kill_ring_length += 1)) + 1)
  4304.                  * sizeof (char *));
  4305.       }
  4306.     }
  4307.     slot--;
  4308.   } else {
  4309.     slot = rl_kill_ring_length - 1;
  4310.   }
  4311.  
  4312.   /* If the last command was a kill, prepend or append. */
  4313.   if (last_command_was_kill) {
  4314.     char *old = rl_kill_ring[slot];
  4315.     char *new = (char *)xmalloc (1 + strlen (old) + strlen (text));
  4316.  
  4317.     if (from < to) {
  4318.       strcpy (new, old);
  4319.       strcat (new, text);
  4320.     } else {
  4321.       strcpy (new, text);
  4322.       strcat (new, old);
  4323.     }
  4324.     free (old);
  4325.     free (text);
  4326.     rl_kill_ring[slot] = new;
  4327.   } else {
  4328.     rl_kill_ring[slot] = text;
  4329.   }
  4330.   rl_kill_index = slot;
  4331.   last_command_was_kill++;
  4332. }
  4333.  
  4334. /* Now REMEMBER!  In order to do prepending or appending correctly, kill
  4335.    commands always make rl_point's original position be the FROM argument,
  4336.    and rl_point's extent be the TO argument. */
  4337.  
  4338.  
  4339. /* **************************************************************** */
  4340. /*                                    */
  4341. /*            Killing Commands                */
  4342. /*                                    */
  4343. /* **************************************************************** */
  4344.  
  4345. /* Delete the word at point, saving the text in the kill ring. */
  4346. rl_kill_word (count)
  4347.      int count;
  4348. {
  4349.   int orig_point = rl_point;
  4350.  
  4351.   if (count < 0)
  4352.     rl_backward_kill_word (-count);
  4353.   else
  4354.     {
  4355.       rl_forward_word (count);
  4356.  
  4357.       if (rl_point != orig_point)
  4358.     rl_kill_text (orig_point, rl_point);
  4359.  
  4360.       rl_point = orig_point;
  4361.     }
  4362. }
  4363.  
  4364. /* Rubout the word before point, placing it on the kill ring. */
  4365. rl_backward_kill_word (count)
  4366.      int count;
  4367. {
  4368.   int orig_point = rl_point;
  4369.  
  4370.   if (count < 0)
  4371.     rl_kill_word (-count);
  4372.   else
  4373.     {
  4374.       rl_backward_word (count);
  4375.  
  4376.       if (rl_point != orig_point)
  4377.     rl_kill_text (orig_point, rl_point);
  4378.     }
  4379. }
  4380.  
  4381. /* Kill from here to the end of the line.  If DIRECTION is negative, kill
  4382.    back to the line start instead. */
  4383. rl_kill_line (direction)
  4384.      int direction;
  4385. {
  4386.   int orig_point = rl_point;
  4387.  
  4388.   if (direction < 0)
  4389.     rl_backward_kill_line (1);
  4390.   else
  4391.     {
  4392.       rl_end_of_line ();
  4393.       if (orig_point != rl_point)
  4394.     rl_kill_text (orig_point, rl_point);
  4395.       rl_point = orig_point;
  4396.     }
  4397. }
  4398.  
  4399. /* Kill backwards to the start of the line.  If DIRECTION is negative, kill
  4400.    forwards to the line end instead. */
  4401. rl_backward_kill_line (direction)
  4402.      int direction;
  4403. {
  4404.   int orig_point = rl_point;
  4405.  
  4406.   if (direction < 0)
  4407.     rl_kill_line (1);
  4408.   else
  4409.     {
  4410.       if (!rl_point)
  4411.     ding ();
  4412.       else
  4413.     {
  4414.       rl_beg_of_line ();
  4415.       rl_kill_text (orig_point, rl_point);
  4416.     }
  4417.     }
  4418. }
  4419.  
  4420. /* Yank back the last killed text.  This ignores arguments. */
  4421. rl_yank ()
  4422. {
  4423.   if (!rl_kill_ring) rl_abort ();
  4424.   rl_insert_text (rl_kill_ring[rl_kill_index]);
  4425. }
  4426.  
  4427. /* If the last command was yank, or yank_pop, and the text just
  4428.    before point is identical to the current kill item, then
  4429.    delete that text from the line, rotate the index down, and
  4430.    yank back some other text. */
  4431. rl_yank_pop ()
  4432. {
  4433.   int l;
  4434.  
  4435.   if (((rl_last_func != rl_yank_pop) && (rl_last_func != rl_yank)) ||
  4436.       !rl_kill_ring)
  4437.     {
  4438.       rl_abort ();
  4439.     }
  4440.  
  4441.   l = strlen (rl_kill_ring[rl_kill_index]);
  4442.   if (((rl_point - l) >= 0) &&
  4443.       (strncmp (the_line + (rl_point - l),
  4444.         rl_kill_ring[rl_kill_index], l) == 0))
  4445.     {
  4446.       rl_delete_text ((rl_point - l), rl_point);
  4447.       rl_point -= l;
  4448.       rl_kill_index--;
  4449.       if (rl_kill_index < 0)
  4450.     rl_kill_index = rl_kill_ring_length - 1;
  4451.       rl_yank ();
  4452.     }
  4453.   else
  4454.     rl_abort ();
  4455.  
  4456. }
  4457.  
  4458. /* Yank the COUNTth argument from the previous history line. */
  4459. rl_yank_nth_arg (count, ignore)
  4460.      int count;
  4461. {
  4462.   register HIST_ENTRY *entry = previous_history ();
  4463.   char *arg;
  4464.  
  4465.   if (entry)
  4466.     next_history ();
  4467.   else
  4468.     {
  4469.       ding ();
  4470.       return;
  4471.     }
  4472.  
  4473.   arg = history_arg_extract (count, count, entry->line);
  4474.   if (!arg || !*arg)
  4475.     {
  4476.       ding ();
  4477.       return;
  4478.     }
  4479.  
  4480.   rl_begin_undo_group ();
  4481.   if (rl_point && the_line[rl_point - 1] != ' ')
  4482.     rl_insert_text (" ");
  4483.   rl_insert_text (arg);
  4484.   free (arg);
  4485.   rl_end_undo_group ();
  4486. }
  4487.  
  4488. /* Vi Mode. */
  4489. #ifdef VI_MODE
  4490. #include "vi_mode.c"
  4491. #endif /* VI_MODE */
  4492.  
  4493. /* How to toggle back and forth between editing modes. */
  4494. rl_vi_editing_mode ()
  4495. {
  4496. #ifdef VI_MODE
  4497.   rl_editing_mode = vi_mode;
  4498.   rl_vi_insertion_mode ();
  4499. #endif /* VI_MODE */
  4500. }
  4501.  
  4502. rl_emacs_editing_mode ()
  4503. {
  4504.   rl_editing_mode = emacs_mode;
  4505.   keymap = emacs_standard_keymap;
  4506. }
  4507.  
  4508.  
  4509. /* **************************************************************** */
  4510. /*                                    */
  4511. /*                 Completion                    */
  4512. /*                                    */
  4513. /* **************************************************************** */
  4514.  
  4515. /* Non-zero means that case is not significant in completion. */
  4516. int completion_case_fold = 0;
  4517.  
  4518. /* Return an array of (char *) which is a list of completions for TEXT.
  4519.    If there are no completions, return a NULL pointer.
  4520.    The first entry in the returned array is the substitution for TEXT.
  4521.     The remaining entries are the possible completions.
  4522.    The array is terminated with a NULL pointer.
  4523.  
  4524.    ENTRY_FUNCTION is a function of two args, and returns a (char *).
  4525.      The first argument is TEXT.
  4526.      The second is a state argument; it should be zero on the first call, and
  4527.      non-zero on subsequent calls.  It returns a NULL pointer to the caller
  4528.      when there are no more matches.
  4529.  */
  4530. char **
  4531. completion_matches (text, entry_function)
  4532.      char *text;
  4533.      char *(*entry_function) ();
  4534. {
  4535.   /* Number of slots in match_list. */
  4536.   int match_list_size;
  4537.  
  4538.   /* The list of matches. */
  4539.   char **match_list =
  4540.     (char **)xmalloc (((match_list_size = 10) + 1) * sizeof (char *));
  4541.  
  4542.   /* Number of matches actually found. */
  4543.   int matches = 0;
  4544.  
  4545.   /* Temporary string binder. */
  4546.   char *string;
  4547.  
  4548.   match_list[1] = (char *)NULL;
  4549.  
  4550.   while (string = (*entry_function) (text, matches))
  4551.     {
  4552.       if (matches + 1 == match_list_size)
  4553.     match_list =
  4554.       (char **)xrealloc (match_list,
  4555.                  ((match_list_size += 10) + 1) * sizeof (char *));
  4556.  
  4557.       match_list[++matches] = string;
  4558.       match_list[matches + 1] = (char *)NULL;
  4559.     }
  4560.  
  4561.   /* If there were any matches, then look through them finding out the
  4562.      lowest common denominator.  That then becomes match_list[0]. */
  4563.   if (matches)
  4564.     {
  4565.       register int i = 1;
  4566.       int low = 100000;        /* Count of max-matched characters. */
  4567.  
  4568.       /* If only one match, just use that. */
  4569.       if (matches == 1)
  4570.     {
  4571.       match_list[0] = match_list[1];
  4572.       match_list[1] = (char *)NULL;
  4573.     }
  4574.       else
  4575.     {
  4576.       /* Otherwise, compare each member of the list with
  4577.          the next, finding out where they stop matching. */
  4578.  
  4579.       while (i < matches)
  4580.         {
  4581.           register int c1, c2, si;
  4582.  
  4583.           if (completion_case_fold)
  4584.         {
  4585.           for (si = 0;
  4586.                (c1 = to_lower(match_list[i][si])) &&
  4587.                (c2 = to_lower(match_list[i + 1][si]));
  4588.                si++)
  4589.             if (c1 != c2) break;
  4590.         }
  4591.           else
  4592.         {
  4593.           for (si = 0;
  4594.                (c1 = match_list[i][si]) &&
  4595.                (c2 = match_list[i + 1][si]);
  4596.                si++)
  4597.             if (c1 != c2) break;
  4598.         }
  4599.  
  4600.           if (low > si) low = si;
  4601.           i++;
  4602.         }
  4603.       match_list[0] = (char *)xmalloc (low + 1);
  4604.       strncpy (match_list[0], match_list[1], low);
  4605.       match_list[0][low] = '\0';
  4606.     }
  4607.     }
  4608.   else                /* There were no matches. */
  4609.     {
  4610.       free (match_list);
  4611.       match_list = (char **)NULL;
  4612.     }
  4613.   return (match_list);
  4614. }
  4615.  
  4616. /* Okay, now we write the entry_function for filename completion.  In the
  4617.    general case.  Note that completion in the shell is a little different
  4618.    because of all the pathnames that must be followed when looking up the
  4619.    completion for a command. */
  4620. char *
  4621. filename_completion_function (text, state)
  4622.      int state;
  4623.      char *text;
  4624. {
  4625.   static DIR *directory;
  4626.   static char *filename = (char *)NULL;
  4627.   static char *dirname = (char *)NULL;
  4628.   static char *users_dirname = (char *)NULL;
  4629.   static int filename_len;
  4630.  
  4631.   struct direct *entry = (struct direct *)NULL;
  4632.  
  4633.   /* If we don't have any state, then do some initialization. */
  4634.   if (!state)
  4635.     {
  4636.       char *rindex (), *temp;
  4637.  
  4638.       if (dirname) free (dirname);
  4639.       if (filename) free (filename);
  4640.       if (users_dirname) free (users_dirname);
  4641.  
  4642.       filename = savestring (text);
  4643.       if (!*text) text = ".";
  4644.       dirname = savestring (text);
  4645.  
  4646.       temp = rindex (dirname, '/');
  4647.  
  4648.       if (temp)
  4649.     {
  4650.       strcpy (filename, ++temp);
  4651.       *temp = '\0';
  4652.     }
  4653.       else
  4654.     strcpy (dirname, ".");
  4655.  
  4656.       /* We aren't done yet.  We also support the "~user" syntax. */
  4657.  
  4658.       /* Save the version of the directory that the user typed. */
  4659.       users_dirname = savestring (dirname);
  4660.       {
  4661.     char *tilde_expand (), *temp_dirname = tilde_expand (dirname);
  4662.     free (dirname);
  4663.     dirname = temp_dirname;
  4664.  
  4665.     if (rl_symbolic_link_hook)
  4666.       (*rl_symbolic_link_hook) (&dirname);
  4667.       }
  4668.       directory = opendir (dirname);
  4669.       filename_len = strlen (filename);
  4670.  
  4671.       rl_filename_completion_desired = 1;
  4672.     }
  4673.  
  4674.   /* At this point we should entertain the possibility of hacking wildcarded
  4675.      filenames, like /usr/man*\/te<TAB>.  If the directory name contains
  4676.      globbing characters, then build an array of directories to glob on, and
  4677.      glob on the first one. */
  4678.  
  4679.   /* Now that we have some state, we can read the directory. */
  4680.  
  4681.   while (directory && (entry = readdir (directory)))
  4682.     {
  4683.       /* Special case for no filename.
  4684.      All entries except "." and ".." match. */
  4685.       if (!filename_len)
  4686.     {
  4687.       if ((strcmp (entry->d_name, ".") != 0) &&
  4688.           (strcmp (entry->d_name, "..") != 0))
  4689.         break;
  4690.     }
  4691.       else
  4692.     {
  4693.       /* Otherwise, if these match upto the length of filename, then
  4694.          it is a match. */
  4695. #ifdef TMB_SYSV
  4696.       if ((strlen (entry->d_name) >= filename_len) &&
  4697.           (strncmp (filename, entry->d_name, filename_len) == 0))
  4698. #else
  4699.         if ((entry->d_namlen >= filename_len) &&
  4700.         (strncmp (filename, entry->d_name, filename_len) == 0))
  4701. #endif /* TMB_SYSV */
  4702.           {
  4703.         break;
  4704.           }
  4705.     }
  4706.     }
  4707.  
  4708.   if (!entry)
  4709.     {
  4710.       if (directory)
  4711.     {
  4712.       closedir (directory);
  4713.       directory = (DIR *)NULL;
  4714.     }
  4715.       return (char *)NULL;
  4716.     }
  4717.   else
  4718.     {
  4719.       char *temp;
  4720.  
  4721.       if (dirname && (strcmp (dirname, ".") != 0))
  4722.     {
  4723. #ifdef TMB_SYSV
  4724.       temp = (char *)xmalloc (1 + strlen (users_dirname)
  4725.                   + strlen (entry->d_name));
  4726. #else
  4727.       temp = (char *)xmalloc (1 + strlen (users_dirname)
  4728.                   + entry->d_namlen);
  4729. #endif /* TMB_SYSV */
  4730.       strcpy (temp, users_dirname);
  4731.       strcat (temp, entry->d_name);
  4732.     }
  4733.       else
  4734.     {
  4735.       temp = (savestring (entry->d_name));
  4736.     }
  4737.       return (temp);
  4738.     }
  4739. }
  4740.  
  4741.  
  4742. /* **************************************************************** */
  4743. /*                                    */
  4744. /*            Binding keys                    */
  4745. /*                                    */
  4746. /* **************************************************************** */
  4747.  
  4748. /* rl_add_defun (char *name, Function *function, int key)
  4749.    Add NAME to the list of named functions.  Make FUNCTION
  4750.    be the function that gets called.
  4751.    If KEY is not -1, then bind it. */
  4752. rl_add_defun (name, function, key)
  4753.      char *name;
  4754.      Function *function;
  4755.      int key;
  4756. {
  4757.   if (key != -1)
  4758.     rl_bind_key (key, function);
  4759.   rl_add_funmap_entry (name, function);
  4760. }
  4761.  
  4762. /* Bind KEY to FUNCTION.  Returns non-zero if KEY is out of range. */
  4763. int
  4764. rl_bind_key (key, function)
  4765.      int key;
  4766.      Function *function;
  4767. {
  4768.   if (key < 0)
  4769.     return (key);
  4770.  
  4771.   if (key > 127 && key < 256)
  4772.     {
  4773.       if (keymap[ESC].type == ISKMAP)
  4774.     {
  4775.       Keymap escmap = (Keymap)keymap[ESC].function;
  4776.  
  4777.       key -= 128;
  4778.       escmap[key].type = ISFUNC;
  4779.       escmap[key].function = function;
  4780.       return (0);
  4781.     }
  4782.       return (key);
  4783.     }
  4784.  
  4785.   keymap[key].type = ISFUNC;
  4786.   keymap[key].function = function;
  4787.  return (0);
  4788. }
  4789.  
  4790. /* Bind KEY to FUNCTION in MAP.  Returns non-zero in case of invalid
  4791.    KEY. */
  4792. int
  4793. rl_bind_key_in_map (key, function, map)
  4794.      int key;
  4795.      Function *function;
  4796.      Keymap map;
  4797. {
  4798.   int result;
  4799.   Keymap oldmap = keymap;
  4800.  
  4801.   keymap = map;
  4802.   result = rl_bind_key (key, function);
  4803.   keymap = oldmap;
  4804.   return (result);
  4805. }
  4806.  
  4807. /* Make KEY do nothing in the currently selected keymap.
  4808.    Returns non-zero in case of error. */
  4809. int
  4810. rl_unbind_key (key)
  4811.      int key;
  4812. {
  4813.   return (rl_bind_key (key, (Function *)NULL));
  4814. }
  4815.  
  4816. /* Make KEY do nothing in MAP.
  4817.    Returns non-zero in case of error. */
  4818. int
  4819. rl_unbind_key_in_map (key, map)
  4820.      int key;
  4821.      Keymap map;
  4822. {
  4823.   return (rl_bind_key_in_map (key, (Function *)NULL, map));
  4824. }
  4825.  
  4826. /* Bind the key sequence represented by the string KEYSEQ to
  4827.    FUNCTION.  This makes new keymaps as necessary.  The initial
  4828.    place to do bindings is in MAP. */
  4829. rl_set_key (keyseq, function, map)
  4830.      char *keyseq;
  4831.      Function *function;
  4832.      Keymap map;
  4833. {
  4834.   rl_generic_bind (ISFUNC, keyseq, function, map);
  4835. }
  4836.  
  4837. /* Bind the key sequence represented by the string KEYSEQ to
  4838.    the string of characters MACRO.  This makes new keymaps as
  4839.    necessary.  The initial place to do bindings is in MAP. */
  4840. rl_macro_bind (keyseq, macro, map)
  4841.      char *keyseq, *macro;
  4842.      Keymap map;
  4843. {
  4844.   char *macro_keys = (char *)xmalloc (2 * (strlen (macro)));
  4845.   int macro_keys_len;
  4846.  
  4847.   if (rl_translate_keyseq (macro, macro_keys, ¯o_keys_len))
  4848.     {
  4849.       free (macro_keys);
  4850.       return;
  4851.     }
  4852.   rl_generic_bind (ISMACR, keyseq, macro_keys, map);
  4853. }
  4854.  
  4855. /* Bind the key sequence represented by the string KEYSEQ to
  4856.    the arbitrary pointer DATA.  TYPE says what kind of data is
  4857.    pointed to by DATA, right now this can be a function (ISFUNC),
  4858.    a macro (ISMACR), or a keymap (ISKMAP).  This makes new keymaps
  4859.    as necessary.  The initial place to do bindings is in MAP. */
  4860. rl_generic_bind (type, keyseq, data, map)
  4861.      int type;
  4862.      char *keyseq, *data;
  4863.      Keymap map;
  4864. {
  4865.   char *keys;
  4866.   int keys_len;
  4867.   register int i;
  4868.  
  4869.   /* If no keys to bind to, exit right away. */
  4870.   if (!keyseq || !*keyseq)
  4871.     {
  4872.       if (type == ISMACR)
  4873.     free (data);
  4874.       return;
  4875.     }
  4876.  
  4877.   keys = (char *)alloca (1 + (2 * strlen (keyseq)));
  4878.  
  4879.   /* Translate the ASCII representation of KEYSEQ into an array
  4880.      of characters.  Stuff the characters into ARRAY, and the
  4881.      length of ARRAY into LENGTH. */
  4882.   if (rl_translate_keyseq (keyseq, keys, &keys_len))
  4883.     return;
  4884.  
  4885.   /* Bind keys, making new keymaps as necessary. */
  4886.   for (i = 0; i < keys_len; i++)
  4887.     {
  4888.       if (i + 1 < keys_len)
  4889.     {
  4890.       if (map[keys[i]].type != ISKMAP)
  4891.         {
  4892.           if (map[i].type == ISMACR)
  4893.         free ((char *)map[i].function);
  4894.  
  4895.           map[keys[i]].type = ISKMAP;
  4896.           map[keys[i]].function = (Function *)rl_make_bare_keymap ();
  4897.         }
  4898.       map = (Keymap)map[keys[i]].function;
  4899.     }
  4900.       else
  4901.     {
  4902.       if (map[keys[i]].type == ISMACR)
  4903.         free ((char *)map[keys[i]].function);
  4904.  
  4905.       map[keys[i]].function = (Function *)data;
  4906.       map[keys[i]].type = type;
  4907.     }
  4908.     }
  4909. }
  4910.  
  4911. /* Translate the ASCII representation of SEQ, stuffing the
  4912.    values into ARRAY, an array of characters.  LEN gets the
  4913.    final length of ARRAY.  Return non-zero if there was an
  4914.    error parsing SEQ. */
  4915. rl_translate_keyseq (seq, array, len)
  4916.      char *seq, *array;
  4917.      int *len;
  4918. {
  4919.   register int i, c, l = 0;
  4920.  
  4921.   for (i = 0; c = seq[i]; i++)
  4922.     {
  4923.       if (c == '\\')
  4924.     {
  4925.       c = seq[++i];
  4926.  
  4927.       if (!c)
  4928.         break;
  4929.  
  4930.       if (((c == 'C' || c == 'M') &&  seq[i + 1] == '-') ||
  4931.           (c == 'e'))
  4932.         {
  4933.           /* Handle special case of backwards define. */
  4934.           if (strncmp (&seq[i], "C-\\M-", 5) == 0)
  4935.         {
  4936.           array[l++] = ESC;
  4937.           i += 5;
  4938.           array[l++] = CTRL (to_upper (seq[i]));
  4939.           if (!seq[i])
  4940.             i--;
  4941.           continue;
  4942.         }
  4943.  
  4944.           switch (c)
  4945.         {
  4946.         case 'M':
  4947.           i++;
  4948.           array[l++] = ESC;
  4949.           break;
  4950.  
  4951.         case 'C':
  4952.           i += 2;
  4953.           array[l++] = CTRL (to_upper (seq[i]));
  4954.           break;
  4955.  
  4956.         case 'e':
  4957.           array[l++] = ESC;
  4958.         }
  4959.  
  4960.           continue;
  4961.         }
  4962.     }
  4963.       array[l++] = c;
  4964.     }
  4965.  
  4966.   *len = l;
  4967.   array[l] = '\0';
  4968.   return (0);
  4969. }
  4970.  
  4971. /* Return a pointer to the function that STRING represents.
  4972.    If STRING doesn't have a matching function, then a NULL pointer
  4973.    is returned. */
  4974. Function *
  4975. rl_named_function (string)
  4976.      char *string;
  4977. {
  4978.   register int i;
  4979.  
  4980.   for (i = 0; funmap[i]; i++)
  4981.     if (stricmp (funmap[i]->name, string) == 0)
  4982.       return (funmap[i]->function);
  4983.   return ((Function *)NULL);
  4984. }
  4985.  
  4986. /* The last key bindings file read. */
  4987. static char *last_readline_init_file = "~/.inputrc";
  4988.  
  4989. /* Re-read the current keybindings file. */
  4990. rl_re_read_init_file (count, ignore)
  4991.      int count, ignore;
  4992. {
  4993.   rl_read_init_file (last_readline_init_file);
  4994. }
  4995.  
  4996. /* Do key bindings from a file.  If FILENAME is NULL it defaults
  4997.    to `~/.inputrc'.  If the file existed and could be opened and
  4998.    read, 0 is returned, otherwise errno is returned. */
  4999. int
  5000. rl_read_init_file (filename)
  5001.      char *filename;
  5002. {
  5003.   extern int errno;
  5004.   int line_size, line_index;
  5005.   char *line = (char *)xmalloc (line_size = 100);
  5006.   char *openname;
  5007.   FILE *file;
  5008.  
  5009.   int c;
  5010.  
  5011.   /* Default the filename. */
  5012.   if (!filename)
  5013.     filename = "~/.inputrc";
  5014.  
  5015.   openname = tilde_expand (filename);
  5016.  
  5017.   /* Open the file. */
  5018.   file = fopen (openname, "r");
  5019.   free (openname);
  5020.  
  5021.   if (!file)
  5022.     return (errno);
  5023.  
  5024.   last_readline_init_file = filename;
  5025.  
  5026.   /* Loop reading lines from the file.  Lines that start with `#' are
  5027.      comments, all other lines are commands for readline initialization. */
  5028.   while ((c = rl_getc (file)) != EOF)
  5029.     {
  5030.       /* If comment, flush to EOL. */
  5031.       if (c == '#')
  5032.     {
  5033.       while ((c = rl_getc (file)) != EOF && c != '\n');
  5034.       if (c == EOF)
  5035.         goto function_exit;
  5036.       continue;
  5037.     }
  5038.  
  5039.       /* Otherwise, this is the start of a line.  Read the
  5040.      line from the file. */
  5041.       line_index = 0;
  5042.       while (c != EOF && c != '\n')
  5043.     {
  5044.       line[line_index++] = c;
  5045.       if (line_index == line_size)
  5046.         line = (char *)xrealloc (line, line_size += 100);
  5047.       c = rl_getc (file);
  5048.     }
  5049.       line[line_index] = '\0';
  5050.  
  5051.       /* Parse the line. */
  5052.       rl_parse_and_bind (line);
  5053.     }
  5054.  
  5055. function_exit:
  5056.  
  5057.   free (line);
  5058.   /* Close up the file and exit. */
  5059.   fclose (file);
  5060.   return (0);
  5061. }
  5062.  
  5063.  
  5064. /* **************************************************************** */
  5065. /*                                    */
  5066. /*            Parser Directives                   */
  5067. /*                                    */
  5068. /* **************************************************************** */
  5069.  
  5070. /* Conditionals. */
  5071.  
  5072. /* Calling programs set this to have their argv[0]. */
  5073. char *rl_readline_name = "other";
  5074.  
  5075. /* Stack of previous values of parsing_conditionalized_out. */
  5076. static unsigned char *if_stack = (unsigned char *)NULL;
  5077. static int if_stack_depth = 0;
  5078. static int if_stack_size = 0;
  5079.  
  5080. /* Push parsing_conditionalized_out, and set parser state based on ARGS. */
  5081. parser_if (args)
  5082.      char *args;
  5083. {
  5084.   register int i;
  5085.  
  5086.   /* Push parser state. */
  5087.   if (if_stack_depth + 1 >= if_stack_size)
  5088.     {
  5089.       if (!if_stack)
  5090.     if_stack = (unsigned char *)xmalloc (if_stack_size = 20);
  5091.       else
  5092.     if_stack = (unsigned char *)xrealloc (if_stack, if_stack_size += 20);
  5093.     }
  5094.   if_stack[if_stack_depth++] = parsing_conditionalized_out;
  5095.  
  5096.   /* We only check to see if the first word in ARGS is the same as the
  5097.      value stored in rl_readline_name. */
  5098.  
  5099.   /* Isolate first argument. */
  5100.   for (i = 0; args[i] && !whitespace (args[i]); i++);
  5101.  
  5102.   if (args[i])
  5103.     args[i++] = '\0';
  5104.  
  5105.   if (stricmp (args, rl_readline_name) == 0)
  5106.     parsing_conditionalized_out = 0;
  5107.   else
  5108.     parsing_conditionalized_out = 1;
  5109. }
  5110.  
  5111. /* Invert the current parser state if there is anything on the stack. */
  5112. parser_else (args)
  5113.      char *args;
  5114. {
  5115.   if (if_stack_depth)
  5116.     parsing_conditionalized_out = !parsing_conditionalized_out;
  5117.   else
  5118.     {
  5119.       /* *** What, no error message? *** */
  5120.     }
  5121. }
  5122.  
  5123. /* Terminate a conditional, popping the value of
  5124.    parsing_conditionalized_out from the stack. */
  5125. parser_endif (args)
  5126.      char *args;
  5127. {
  5128.   if (if_stack_depth)
  5129.     parsing_conditionalized_out = if_stack[--if_stack_depth];
  5130.   else
  5131.     {
  5132.       /* *** What, no error message? *** */
  5133.     }
  5134. }
  5135.  
  5136. /* Associate textual names with actual functions. */
  5137. static struct {
  5138.   char *name;
  5139.   Function *function;
  5140. } parser_directives [] = {
  5141.   { "if", parser_if },
  5142.   { "endif", parser_endif },
  5143.   { "else", parser_else },
  5144.   { (char *)0x0, (Function *)0x0 }
  5145. };
  5146.  
  5147. /* Handle a parser directive.  STATEMENT is the line of the directive
  5148.    without any leading `$'. */
  5149. static int
  5150. handle_parser_directive (statement)
  5151.      char *statement;
  5152. {
  5153.   register int i;
  5154.   char *directive, *args;
  5155.  
  5156.   /* Isolate the actual directive. */
  5157.  
  5158.   /* Skip whitespace. */
  5159.   for (i = 0; whitespace (statement[i]); i++);
  5160.  
  5161.   directive = &statement[i];
  5162.  
  5163.   for (; statement[i] && !whitespace (statement[i]); i++);
  5164.  
  5165.   if (statement[i])
  5166.     statement[i++] = '\0';
  5167.  
  5168.   for (; statement[i] && whitespace (statement[i]); i++);
  5169.  
  5170.   args = &statement[i];
  5171.  
  5172.   /* Lookup the command, and act on it. */
  5173.   for (i = 0; parser_directives[i].name; i++)
  5174.     if (stricmp (directive, parser_directives[i].name) == 0)
  5175.       {
  5176.     (*parser_directives[i].function) (args);
  5177.     return (0);
  5178.       }
  5179.  
  5180.   /* *** Should an error message be output? */
  5181.   return (1);
  5182. }
  5183.  
  5184. /* Read the binding command from STRING and perform it.
  5185.    A key binding command looks like: Keyname: function-name\0,
  5186.    a variable binding command looks like: set variable value.
  5187.    A new-style keybinding looks like "\C-x\C-x": exchange-point-and-mark. */
  5188. rl_parse_and_bind (string)
  5189.      char *string;
  5190. {
  5191.   extern char *possible_control_prefixes[], *possible_meta_prefixes[];
  5192.   char *rindex (), *funname, *kname;
  5193.   static int substring_member_of_array ();
  5194.   register int c;
  5195.   int key, i;
  5196.  
  5197.   if (!string || !*string || *string == '#')
  5198.     return;
  5199.  
  5200.   /* If this is a parser directive, act on it. */
  5201.   if (*string == '$')
  5202.     {
  5203.       handle_parser_directive (&string[1]);
  5204.       return;
  5205.     }
  5206.  
  5207.   /* If we are supposed to be skipping parsing right now, then do it. */
  5208.   if (parsing_conditionalized_out)
  5209.     return;
  5210.  
  5211.   i = 0;
  5212.   /* If this keyname is a complex key expression surrounded by quotes,
  5213.      advance to after the matching close quote. */
  5214.   if (*string == '"')
  5215.     {
  5216.       for (i = 1; c = string[i]; i++)
  5217.     {
  5218.       if (c == '"' && string[i - 1] != '\\')
  5219.         break;
  5220.     }
  5221.     }
  5222.  
  5223.   /* Advance to the colon (:) or whitespace which separates the two objects. */
  5224.   for (; (c = string[i]) && c != ':' && c != ' ' && c != '\t'; i++ );
  5225.  
  5226.   /* Mark the end of the command (or keyname). */
  5227.   if (string[i])
  5228.     string[i++] = '\0';
  5229.  
  5230.   /* If this is a command to set a variable, then do that. */
  5231.   if (stricmp (string, "set") == 0)
  5232.     {
  5233.       char *var = string + i;
  5234.       char *value;
  5235.  
  5236.       /* Make VAR point to start of variable name. */
  5237.       while (*var && whitespace (*var)) var++;
  5238.  
  5239.       /* Make value point to start of value string. */
  5240.       value = var;
  5241.       while (*value && !whitespace (*value)) value++;
  5242.       if (*value)
  5243.     *value++ = '\0';
  5244.       while (*value && whitespace (*value)) value++;
  5245.  
  5246.       rl_variable_bind (var, value);
  5247.       return;
  5248.     }
  5249.  
  5250.   /* Skip any whitespace between keyname and funname. */
  5251.   for (; string[i] && whitespace (string[i]); i++);
  5252.   funname = &string[i];
  5253.  
  5254.   /* Now isolate funname.
  5255.      For straight function names just look for whitespace, since
  5256.      that will signify the end of the string.  But this could be a
  5257.      macro definition.  In that case, the string is quoted, so skip
  5258.      to the matching delimiter. */
  5259.   if (*funname == '\'' || *funname == '"')
  5260.     {
  5261.       int delimiter = string[i++];
  5262.  
  5263.       for (; c = string[i]; i++)
  5264.     {
  5265.       if (c == delimiter && string[i - 1] != '\\')
  5266.         break;
  5267.     }
  5268.       if (c)
  5269.     i++;
  5270.     }
  5271.  
  5272.   /* Advance to the end of the string.  */
  5273.   for (; string[i] && !whitespace (string[i]); i++);
  5274.  
  5275.   /* No extra whitespace at the end of the string. */
  5276.   string[i] = '\0';
  5277.  
  5278.   /* If this is a new-style key-binding, then do the binding with
  5279.      rl_set_key ().  Otherwise, let the older code deal with it. */
  5280.   if (*string == '"')
  5281.     {
  5282.       char *seq = (char *)alloca (1 + strlen (string));
  5283.       register int j, k = 0;
  5284.  
  5285.       for (j = 1; string[j]; j++)
  5286.     {
  5287.       if (string[j] == '"' && string[j - 1] != '\\')
  5288.         break;
  5289.  
  5290.       seq[k++] = string[j];
  5291.     }
  5292.       seq[k] = '\0';
  5293.  
  5294.       /* Binding macro? */
  5295.       if (*funname == '\'' || *funname == '"')
  5296.     {
  5297.       j = strlen (funname);
  5298.  
  5299.       if (j && funname[j - 1] == *funname)
  5300.         funname[j - 1] = '\0';
  5301.  
  5302.       rl_macro_bind (seq, &funname[1], keymap);
  5303.     }
  5304.       else
  5305.     rl_set_key (seq, rl_named_function (funname), keymap);
  5306.  
  5307.       return;
  5308.     }
  5309.  
  5310.   /* Get the actual character we want to deal with. */
  5311.   kname = rindex (string, '-');
  5312.   if (!kname)
  5313.     kname = string;
  5314.   else
  5315.     kname++;
  5316.  
  5317.   key = glean_key_from_name (kname);
  5318.  
  5319.   /* Add in control and meta bits. */
  5320.   if (substring_member_of_array (string, possible_control_prefixes))
  5321.     key = CTRL (to_upper (key));
  5322.  
  5323.   if (substring_member_of_array (string, possible_meta_prefixes))
  5324.     key = META (key);
  5325.  
  5326.   /* Temporary.  Handle old-style keyname with macro-binding. */
  5327.   if (*funname == '\'' || *funname == '"')
  5328.     {
  5329.       char seq[2];
  5330.       int fl = strlen (funname);
  5331.  
  5332.       seq[0] = key; seq[1] = '\0';
  5333.       if (fl && funname[fl - 1] == *funname)
  5334.     funname[fl - 1] = '\0';
  5335.  
  5336.       rl_macro_bind (seq, &funname[1], keymap);
  5337.     }
  5338.   else
  5339.     rl_bind_key (key, rl_named_function (funname));
  5340. }
  5341.  
  5342. rl_variable_bind (name, value)
  5343.      char *name, *value;
  5344. {
  5345.   if (stricmp (name, "editing-mode") == 0)
  5346.     {
  5347.       if (strnicmp (value, "vi", 2) == 0)
  5348.     {
  5349. #ifdef VI_MODE
  5350.       keymap = vi_insertion_keymap;
  5351.       rl_editing_mode = vi_mode;
  5352. #endif /* VI_MODE */
  5353.     }
  5354.       else if (strnicmp (value, "emacs", 5) == 0)
  5355.     {
  5356.       keymap = emacs_standard_keymap;
  5357.       rl_editing_mode = emacs_mode;
  5358.     }
  5359.     }
  5360.   else if (stricmp (name, "horizontal-scroll-mode") == 0)
  5361.     {
  5362.       if (!*value || stricmp (value, "On") == 0)
  5363.     horizontal_scroll_mode = 1;
  5364.       else
  5365.     horizontal_scroll_mode = 0;
  5366.     }
  5367. }
  5368.  
  5369. /* Return the character which matches NAME.
  5370.    For example, `Space' returns ' '. */
  5371.  
  5372. typedef struct {
  5373.   char *name;
  5374.   int value;
  5375. } assoc_list;
  5376.  
  5377. assoc_list name_key_alist[] = {
  5378.   { "Space", ' ' },
  5379.   { "SPC", ' ' },
  5380.   { "Rubout", 0x7f },
  5381.   { "DEL", 0x7f },
  5382.   { "Tab", 0x09 },
  5383.   { "Newline", '\n' },
  5384.   { "Return", '\r' },
  5385.   { "RET", '\r' },
  5386.   { "LFD", '\n' },
  5387.   { "Escape", '\033' },
  5388.   { "ESC", '\033' },
  5389.  
  5390.   { (char *)0x0, 0 }
  5391. };
  5392.  
  5393. int
  5394. glean_key_from_name (name)
  5395.      char *name;
  5396. {
  5397.   register int i;
  5398.  
  5399.   for (i = 0; name_key_alist[i].name; i++)
  5400.     if (stricmp (name, name_key_alist[i].name) == 0)
  5401.       return (name_key_alist[i].value);
  5402.  
  5403.   return (*name);
  5404. }
  5405.  
  5406.  
  5407. /* **************************************************************** */
  5408. /*                                    */
  5409. /*            String Utility Functions            */
  5410. /*                                    */
  5411. /* **************************************************************** */
  5412.  
  5413. /* Return non-zero if any members of ARRAY are a substring in STRING. */
  5414. static int
  5415. substring_member_of_array (string, array)
  5416.      char *string, **array;
  5417. {
  5418.   static char *strindex ();
  5419.  
  5420.   while (*array)
  5421.     {
  5422.       if (strindex (string, *array))
  5423.     return (1);
  5424.       array++;
  5425.     }
  5426.   return (0);
  5427. }
  5428.  
  5429. /* Whoops, Unix doesn't have strnicmp. */
  5430.  
  5431. /* Compare at most COUNT characters from string1 to string2.  Case
  5432.    doesn't matter. */
  5433. static int
  5434. strnicmp (string1, string2, count)
  5435.      char *string1, *string2;
  5436. {
  5437.   register char ch1, ch2;
  5438.  
  5439.   while (count)
  5440.     {
  5441.       ch1 = *string1++;
  5442.       ch2 = *string2++;
  5443.       if (to_upper(ch1) == to_upper(ch2))
  5444.     count--;
  5445.       else break;
  5446.     }
  5447.   return (count);
  5448. }
  5449.  
  5450. /* strcmp (), but caseless. */
  5451. static int
  5452. stricmp (string1, string2)
  5453.      char *string1, *string2;
  5454. {
  5455.   register char ch1, ch2;
  5456.  
  5457.   while (*string1 && *string2)
  5458.     {
  5459.       ch1 = *string1++;
  5460.       ch2 = *string2++;
  5461.       if (to_upper(ch1) != to_upper(ch2))
  5462.     return (1);
  5463.     }
  5464.   return (*string1 | *string2);
  5465. }
  5466.  
  5467. /* Determine if s2 occurs in s1.  If so, return a pointer to the
  5468.    match in s1.  The compare is case insensitive. */
  5469. static char *
  5470. strindex (s1, s2)
  5471.      register char *s1, *s2;
  5472. {
  5473.   register int i, l = strlen (s2);
  5474.   register int len = strlen (s1);
  5475.  
  5476.   for (i = 0; (len - i) >= l; i++)
  5477.     if (strnicmp (&s1[i], s2, l) == 0)
  5478.       return (s1 + i);
  5479.   return ((char *)NULL);
  5480. }
  5481.  
  5482.  
  5483. /* **************************************************************** */
  5484. /*                                    */
  5485. /*            SYSV Support                    */
  5486. /*                                    */
  5487. /* **************************************************************** */
  5488.  
  5489. /* Since system V reads input differently than we do, I have to
  5490.    make a special version of getc for that. */
  5491.  
  5492. #ifdef SYSV
  5493.  
  5494. extern int errno;
  5495. #include <sys/errno.h>
  5496.  
  5497. int
  5498. rl_getc (stream)
  5499.      FILE *stream;
  5500. {
  5501.   int result;
  5502.   unsigned char c;
  5503.  
  5504.   while (1)
  5505.     {
  5506.       result = read (fileno (stream), &c, sizeof (char));
  5507.       if (result == sizeof (char))
  5508.     return (c);
  5509.  
  5510.       if (errno != EINTR)
  5511.     return (EOF);
  5512.     }
  5513. }
  5514. #else
  5515. int
  5516. rl_getc (stream)
  5517.      FILE *stream;
  5518. {
  5519.   return (getc (stream));
  5520. }
  5521. #endif
  5522.  
  5523. #ifdef STATIC_MALLOC
  5524.  
  5525. /* **************************************************************** */
  5526. /*                                    */
  5527. /*            xmalloc and xrealloc ()                     */
  5528. /*                                    */
  5529. /* **************************************************************** */
  5530.  
  5531. static void memory_error_and_abort ();
  5532.  
  5533. static char *
  5534. xmalloc (bytes)
  5535.      int bytes;
  5536. {
  5537.   char *temp = (char *)malloc (bytes);
  5538.  
  5539.   if (!temp)
  5540.     memory_error_and_abort ();
  5541.   return (temp);
  5542. }
  5543.  
  5544. static char *
  5545. xrealloc (pointer, bytes)
  5546.      char *pointer;
  5547.      int bytes;
  5548. {
  5549.   char *temp = (char *)realloc (pointer, bytes);
  5550.  
  5551.   if (!temp)
  5552.     memory_error_and_abort ();
  5553.   return (temp);
  5554. }
  5555.  
  5556. static void
  5557. memory_error_and_abort ()
  5558. {
  5559.   fprintf (stderr, "readline: Out of virtual memory!\n");
  5560.   abort ();
  5561. }
  5562. #endif /* STATIC_MALLOC */
  5563.  
  5564.  
  5565. /* **************************************************************** */
  5566. /*                                    */
  5567. /*            Testing Readline                */
  5568. /*                                    */
  5569. /* **************************************************************** */
  5570.  
  5571. #ifdef TEST
  5572.  
  5573. main ()
  5574. {
  5575.   HIST_ENTRY **history_list ();
  5576.   char *temp = (char *)NULL;
  5577.   char *prompt = "readline% ";
  5578.   int done = 0;
  5579.  
  5580.   while (!done)
  5581.     {
  5582.       temp = readline (prompt);
  5583.  
  5584.       /* Test for EOF. */
  5585.       if (!temp)
  5586.     exit (1);
  5587.  
  5588.       /* If there is anything on the line, print it and remember it. */
  5589.       if (*temp)
  5590.     {
  5591.       fprintf (stderr, "%s\r\n", temp);
  5592.       add_history (temp);
  5593.     }
  5594.  
  5595.       /* Check for `command' that we handle. */
  5596.       if (strcmp (temp, "quit") == 0)
  5597.     done = 1;
  5598.  
  5599.       if (strcmp (temp, "list") == 0) {
  5600.     HIST_ENTRY **list = history_list ();
  5601.     register int i;
  5602.     if (list) {
  5603.       for (i = 0; list[i]; i++) {
  5604.         fprintf (stderr, "%d: %s\r\n", i, list[i]->line);
  5605.         free (list[i]->line);
  5606.       }
  5607.       free (list);
  5608.     }
  5609.       }
  5610.       free (temp);
  5611.     }
  5612. }
  5613.  
  5614. #endif /* TEST */
  5615.  
  5616.  
  5617. /*
  5618.  * Local variables:
  5619.  * compile-command: "gcc -g -traditional -I. -I.. -DTEST -o readline readline.c keymaps.o funmap.o history.o -ltermcap"
  5620.  * end:
  5621.  */
  5622.